Setup and deploy appengine. | |
============================ | |
In the ./chaosp directory: | |
1. Run the following command to install python dependencies: | |
# pip install -r requirements.txt -t lib | |
2. To deploy the app engine: | |
# gcloud app deploy app.yaml | |
3. To test changes using local server: | |
# dev_appserver.py app.yaml | |
This will start a server on localport 8080. |