Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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.

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!