We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent cd7646a commit d0e832dCopy full SHA for d0e832d
build.sh
@@ -0,0 +1,7 @@
1
+#!/usr/bin/env bash
2
+# exit on error
3
+set -o errexit
4
+
5
+python -m pip install --upgrade pip
6
7
+pip install -r requirements.txt
render.yaml
@@ -0,0 +1,13 @@
+services:
+ - type: web
+ name: flask-material-kit
+ plan: starter
+ env: python
+ region: frankfurt # region should be same as your database region.
+ buildCommand: "./build.sh"
8
+ startCommand: "gunicorn run:app"
9
+ envVars:
10
+ - key: SECRET_KEY
11
+ generateValue: true
12
+ - key: WEB_CONCURRENCY
13
+ value: 4
0 commit comments