Skip to content
Draft
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 3 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,15 +38,11 @@ We have included examples of websites that use the Secure Scaffold. We hope you
Add the library to requirements.txt:

# requirements.txt
https://github.com/google/gae-secure-scaffold-python3/archive/master.zip

Better is to pin to a specific tag or revision. For example:

https://github.com/google/gae-secure-scaffold-python3/archive/1.1.0.zip
https://github.com/google/gae-secure-scaffold-python3/archive/2.0.0.zip

Install the library in your Python development environment:

pip install https://github.com/google/gae-secure-scaffold-python3/archive/master.zip
pip install https://github.com/google/gae-secure-scaffold-python3/archive/2.0.0.zip

Import the library and use it to create a Flask application:

Expand Down Expand Up @@ -76,7 +72,7 @@ You can customise your application by creating a Python file. Then set the envir
And add the environment variable to `app.yaml`:

# app.yaml
runtime: python37
runtime: python311

handlers:
- url: /.*
Expand Down
2 changes: 1 addition & 1 deletion setup.py
Original file line number Diff line number Diff line change
Expand Up @@ -24,7 +24,7 @@

setuptools.setup(
name="Secure Scaffold",
version="1.1.0",
version="2.0.0",
packages=setuptools.find_packages(where="src"),
package_dir={"": "src"},
install_requires=install_requires,
Expand Down