https://github.com/andreibancioiu/flask-gae-sessions
Example for using Flask server side sessions on Google App Engine.
https://github.com/andreibancioiu/flask-gae-sessions
flask google-appengine
Last synced: 25 days ago
JSON representation
Example for using Flask server side sessions on Google App Engine.
- Host: GitHub
- URL: https://github.com/andreibancioiu/flask-gae-sessions
- Owner: andreibancioiu
- License: mit
- Created: 2017-02-07T23:47:50.000Z (over 9 years ago)
- Default Branch: master
- Last Pushed: 2017-07-09T21:29:10.000Z (almost 9 years ago)
- Last Synced: 2025-03-25T22:19:03.622Z (about 1 year ago)
- Topics: flask, google-appengine
- Language: Python
- Homepage: https://andreibancioiu.github.io/flask-gae-sessions
- Size: 219 KB
- Stars: 2
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
## Run Locally
1. Install and then initialize the [Google Cloud SDK](https://cloud.google.com/sdk/docs/).
2. Install dependencies in the project's lib directory.
```
pip install -r requirements.txt -t lib
```
3. Run tests
```
cd tests
python runner.py ~/google-cloud-sdk
```
4. Start development server
```
./start.sh
```
Then browse `http://localhost:8080`.
5. Deploy to GAE
```
gcloud app deploy app.yaml --project flask-gae-sessions --verbosity=info
```
## Screenshot

## Documentation
```
cd docs
make html
git subtree push --prefix docs/build/html origin gh-pages
```