Install and set up Google Cloud SDK locally [https://cloud.google.com/sdk/downloads].
After you create your project and register it through Google, you can easily upload files and deploy apps using the Google Cloud Shell.[https://console.cloud.google.com/home/dashboard]
To deploy your app for testing and development:
dev_appserver.py app.yaml
To deploy the app for testing and development with a clean datastore:
dev_appserver.py --clear_datastore=yes app.yaml
To deploy the app to a server using Google Cloud Shell:
gcloud app deploy app.yaml
[https://github.com/vchapple17/boat-api/blob/master/doc.md]
GET /boats/
POST /boats/
GET /bosts/{boat_id}
PATCH /bosts/{boat_id}
DELETE /bosts/{boat_id}
GET /slips/
POST /slips/
GET /slips/{slip_id}
PATCH /slips/{slip_id}
PUT /boats/{boat_id}/slips/{slip_id}
DELETE /boats/{boat_id}/slips/{slip_id}