From 14042a693d23864b7aff09dc355083e53e83b640 Mon Sep 17 00:00:00 2001 From: Jay Goel Date: Fri, 17 Apr 2020 19:39:02 -0400 Subject: [PATCH] deploy to appengine --- .gcloudignore | 20 ++++++++++++++++++++ .gitignore | 2 ++ app.yaml | 2 ++ app.py => main.py | 0 4 files changed, 24 insertions(+) create mode 100644 .gcloudignore create mode 100644 app.yaml rename app.py => main.py (100%) diff --git a/.gcloudignore b/.gcloudignore new file mode 100644 index 0000000..840dec4 --- /dev/null +++ b/.gcloudignore @@ -0,0 +1,20 @@ +# This file specifies files that are *not* uploaded to Google Cloud Platform +# using gcloud. It follows the same syntax as .gitignore, with the addition of +# "#!include" directives (which insert the entries of the given .gitignore-style +# file at that point). +# +# For more information, run: +# $ gcloud topic gcloudignore +# +.gcloudignore +# If you would like to upload your .git directory, .gitignore file or files +# from your .gitignore file, remove the corresponding line +# below: +.git +.gitignore + +# Python pycache: +__pycache__/ +# Ignored by the build system +/setup.cfg +venv/ \ No newline at end of file diff --git a/.gitignore b/.gitignore index b6e4761..f347387 100644 --- a/.gitignore +++ b/.gitignore @@ -127,3 +127,5 @@ dmypy.json # Pyre type checker .pyre/ + +.vscode/ \ No newline at end of file diff --git a/app.yaml b/app.yaml new file mode 100644 index 0000000..267633f --- /dev/null +++ b/app.yaml @@ -0,0 +1,2 @@ +runtime: python37 +instance_class: F1 \ No newline at end of file diff --git a/app.py b/main.py similarity index 100% rename from app.py rename to main.py