From 05f1c5b9b120629eac10bd1383eb040740deedf7 Mon Sep 17 00:00:00 2001 From: Kraig Brockschmidt Date: Tue, 9 Oct 2018 07:53:48 -0700 Subject: [PATCH 1/2] Startup file --- .vscode/settings.json | 4 +++- startup.txt | 1 + 2 files changed, 4 insertions(+), 1 deletion(-) create mode 100644 startup.txt diff --git a/.vscode/settings.json b/.vscode/settings.json index b035bb4..ec08394 100644 --- a/.vscode/settings.json +++ b/.vscode/settings.json @@ -1,3 +1,5 @@ { - "python.pythonPath": "${workspaceFolder}\\env\\Scripts\\python.exe" + "python.pythonPath": "${workspaceFolder}\\env\\Scripts\\python.exe", + "appService.deploySubpath": "", + "appService.defaultWebAppToDeploy": "/subscriptions/44f7aaf4-97f8-4aa9-a791-245ed34e3bd5/resourceGroups/appsvc_rg_linux_centralus/providers/Microsoft.Web/sites/vscode-flask-02" } \ No newline at end of file diff --git a/startup.txt b/startup.txt new file mode 100644 index 0000000..c69b5c7 --- /dev/null +++ b/startup.txt @@ -0,0 +1 @@ +gunicorn "--bind=0.0.0.0" --timeout=600 --workers=4 hello:myapp From 2b0134a2332a557f8a5115fcd12485deada62cae Mon Sep 17 00:00:00 2001 From: Kraig Brockschmidt Date: Wed, 17 Oct 2018 11:58:54 -0700 Subject: [PATCH 2/2] Startup file --- .gitignore | 1 + startup.txt | 2 +- 2 files changed, 2 insertions(+), 1 deletion(-) diff --git a/.gitignore b/.gitignore index 346fbc2..45e7bbe 100644 --- a/.gitignore +++ b/.gitignore @@ -104,3 +104,4 @@ venv.bak/ .mypy_cache/ .vscode/ +settings.json diff --git a/startup.txt b/startup.txt index c69b5c7..2638027 100644 --- a/startup.txt +++ b/startup.txt @@ -1 +1 @@ -gunicorn "--bind=0.0.0.0" --timeout=600 --workers=4 hello:myapp +gunicorn "--bind=0.0.0.0" --timeout=600 --workers=4 --chdir hello_app webapp:app