Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/abdonrd/appengine-flask-template
A template for use Flask (a Python microframework) on Google App Engine.
https://github.com/abdonrd/appengine-flask-template
Last synced: 3 months ago
JSON representation
A template for use Flask (a Python microframework) on Google App Engine.
- Host: GitHub
- URL: https://github.com/abdonrd/appengine-flask-template
- Owner: abdonrd
- Created: 2015-02-22T22:53:49.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2015-03-27T01:19:46.000Z (almost 10 years ago)
- Last Synced: 2024-10-17T19:56:16.090Z (3 months ago)
- Language: Python
- Homepage:
- Size: 195 KB
- Stars: 5
- Watchers: 2
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Flask template for Google App Engine
A template for use [Flask (a Python microframework)](http://flask.pocoo.org/)
in Google App Engine.## Requirements
* Python 2.7
* pip
* [Google App Engine SDK for Python](https://cloud.google.com/appengine/downloads)## Run the project locally
1. Clone this repository.2. Install dependencies in the project's `lib` directory. Run this command
inside the project folder:
```
pip install -r requirements.txt -t lib
```3. Run the app with _GoogleAppEngineLauncher_ or from command line:
```
dev_appserver.py .
```4. Open [http://localhost:8080](http://localhost:8080). Hello world!