Skip to content

Commit aeda293

Browse files
committed
Release v1.0.10 - Added CI/CD Support
1 parent 8fe5164 commit aeda293

File tree

3 files changed

+27
-0
lines changed

3 files changed

+27
-0
lines changed

CHANGELOG.md

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,12 @@
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

build.sh

Lines changed: 7 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -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

Lines changed: 13 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
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

0 commit comments

Comments
 (0)