File tree Expand file tree Collapse file tree 3 files changed +27
-0
lines changed
Expand file tree Collapse file tree 3 files changed +27
-0
lines changed Original file line number Diff line number Diff line change 11# Change Log
22
3+ ## [ 1.0.10] 2022-12-31
4+ ### Changes
5+
6+ - Deployment-ready for Render (CI/CD)
7+ - ` render.yaml `
8+ - ` build.sh `
9+
310## [ 1.0.9] 2022-12-31
411### Changes
512
Original file line number Diff line number Diff line change 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
Original file line number Diff line number Diff line change 1+ services :
2+ - type : web
3+ name : flask-volt
4+ plan : starter
5+ env : python
6+ region : frankfurt # region should be same as your database region.
7+ buildCommand : " ./build.sh"
8+ startCommand : " gunicorn run:app"
9+ envVars :
10+ - key : SECRET_KEY
11+ generateValue : true
12+ - key : WEB_CONCURRENCY
13+ value : 4
You can’t perform that action at this time.
0 commit comments