Skip to content

Commit 21fc5bf

Browse files
Add support for render.com (#304)
* Init a render file * Update render.yaml * Fix envs * Fix redis * Temp fix * Fix * Fix * Fix * Fix * Add docker path * Change healtcheck * render.yaml * Fix services region * Add bin bash to entrypoints * Improve render.yaml * Executeables * Add logging * Fix web * Change health check * Add CELERY_BROKER_URL * Deploy on master * Add section for Render in the README.md * Skip deploy_to_heroku job. The project is not hosted on Heroku any more.
1 parent 2056acf commit 21fc5bf

File tree

6 files changed

+110
-7
lines changed

6 files changed

+110
-7
lines changed

.github/workflows/django.yml

+2-1
Original file line numberDiff line numberDiff line change
@@ -64,7 +64,8 @@ jobs:
6464
deploy_to_heroku:
6565
runs-on: ubuntu-latest
6666
needs: build
67-
if: github.ref == 'refs/heads/master'
67+
# The project is currently hosted on render.com
68+
if: false
6869
steps:
6970
- uses: actions/checkout@v3
7071
with:

README.md

+21-5
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,7 @@
3131
- [Helpful commands for local development with docker-compose](#helpful-commands-for-local-development-with-docker-compose)
3232
- [Deployment](#deployment)
3333
* [Heroku](#heroku)
34+
* [Render](#render)
3435
* [AWS ECS](#aws-ecs)
3536
- [Linters and Code Formatters](#linters-and-code-formatters)
3637

@@ -53,7 +54,7 @@ Few important things:
5354
- `mypy` is ran as a build step in [`.github/workflows/django.yml`](.github/workflows/django.yml)
5455
- ⚠️ The provided configuration is quite minimal. **You should figure out your team needs & configure accordingly** - <https://mypy.readthedocs.io/en/stable/config_file.html>
5556
- It comes with GitHub Actions support, [based on that article](https://hacksoft.io/github-actions-in-action-setting-up-django-and-postgres/)
56-
- It can be easily deployed to Heroku or AWS ECS.
57+
- It can be easily deployed to Heroku, Render or AWS ECS.
5758
- It comes with an example list API, that uses [`django-filter`](https://django-filter.readthedocs.io/en/stable/) for filtering & pagination from DRF.
5859
- It comes with examples for writing tests with fakes & factories, based on the following articles - <https://www.hacksoft.io/blog/improve-your-tests-django-fakes-and-factories>, <https://www.hacksoft.io/blog/improve-your-tests-django-fakes-and-factories-advanced-usage>
5960

@@ -296,16 +297,14 @@ docker-compose run django python manage.py shell
296297

297298
## Deployment
298299

299-
This project is ready to be deployed either on **Heroku** or **AWS ECS**.
300+
This project is ready to be deployed either on **Heroku** **Render** or **AWS ECS**.
300301

301302
### Heroku
302303

303304
Deploying a Python / Django application on Heroku is quite straighforward & this project is ready to be deployed.
304305

305306
To get an overview of how Heroku deployment works, we recommend reading this first - <https://devcenter.heroku.com/articles/deploying-python>
306307

307-
There's a current deployment that can be found here - <https://django-styleguide.hacksoft.io/>
308-
309308
**Files related to Heroku deployment:**
310309

311310
1. `Procfile`
@@ -332,6 +331,23 @@ On top of that, we've added `gunicorn.conf.py` with some example settings.
332331
1. Worker settings - <https://docs.gunicorn.org/(en/latest/settings.html#worker-processes>
333332
1. A brief description of the architecture of Gunicorn - <https://docs.gunicorn.org/en/latest/design.html>
334333

334+
### Render
335+
336+
To get an overview of how Render deployment works, we recommend reading this first - <https://render.com/docs/deploy-django>
337+
338+
There's a current deployment that can be found here - <https://django-styleguide.hacksoft.io/>
339+
340+
**Files related to Heroku deployment:**
341+
342+
1. `render.yaml`
343+
- Describes the setup. Also known as [Render Blueprint](https://render.com/docs/blueprint-spec)
344+
1. `docker/*_entrypoint.sh`
345+
- Entrypoint for every different process type.
346+
1. `docker/production.Dockerfile`
347+
- Dockerfile for production build.
348+
1. `requirements.txt`
349+
- Heroku requires a root-level `requirements.txt`, so we've added that.
350+
335351
### AWS ECS
336352

337353
_Coming soon_
@@ -397,4 +413,4 @@ build:
397413
In order to test if your local setup is up to date, you can either:
398414

399415
1. Try making a commit, to see if `pre-commit` is going to be triggered.
400-
1. Or run `black --check .` and `isort --check .` in the project root directory.
416+
1. Or run `black --check .` and `isort --check .` in the project root directory.

docker/beats_entrypoint.sh

100644100755
+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
#!/bin/bash
12
echo "--> Starting beats process"
23
celery -A styleguide_example.tasks worker -l info --without-gossip --without-mingle --without-heartbeat

docker/celery_entrypoint.sh

100644100755
+1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
#!/bin/bash
12
echo "--> Starting celery process"
23
celery -A styleguide_example.tasks beat -l info --scheduler django_celery_beat.schedulers:DatabaseScheduler

docker/web_entrypoint.sh

100644100755
+2-1
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,3 @@
1+
#!/bin/bash
12
echo "--> Starting web process"
2-
gunicorn config.wsgi:application -b 0.0.0.0:80
3+
gunicorn config.wsgi:application -b 0.0.0.0:$PORT

render.yaml

+83
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,83 @@
1+
services:
2+
- type: web
3+
name: web
4+
env: docker
5+
region: frankfurt
6+
plan: starter
7+
branch: master
8+
dockerCommand: ./docker/web_entrypoint.sh
9+
dockerfilePath: ./docker/production.Dockerfile
10+
numInstances: 1
11+
healthCheckPath: /admin/login/
12+
envVars:
13+
- fromGroup: app-settings
14+
- key: CELERY_BROKER_URL
15+
fromService:
16+
type: redis
17+
name: redis
18+
property: connectionString
19+
- key: DATABASE_URL
20+
fromDatabase:
21+
name: postgres
22+
property: connectionString
23+
24+
- type: worker
25+
name: celery
26+
env: docker
27+
region: frankfurt
28+
plan: starter
29+
branch: master
30+
dockerCommand: ./docker/celery_entrypoint.sh
31+
dockerfilePath: ./docker/production.Dockerfile
32+
numInstances: 1
33+
envVars:
34+
- fromGroup: app-settings
35+
- key: CELERY_BROKER_URL
36+
fromService:
37+
type: redis
38+
name: redis
39+
property: connectionString
40+
- key: DATABASE_URL
41+
fromDatabase:
42+
name: postgres
43+
property: connectionString
44+
45+
- type: worker
46+
name: beats
47+
env: docker
48+
region: frankfurt
49+
plan: starter
50+
branch: master
51+
dockerCommand: ./docker/celery_entrypoint.sh
52+
dockerfilePath: ./docker/production.Dockerfile
53+
numInstances: 1
54+
envVars:
55+
- fromGroup: app-settings
56+
- key: CELERY_BROKER_URL
57+
fromService:
58+
type: redis
59+
name: redis
60+
property: connectionString
61+
- key: DATABASE_URL
62+
fromDatabase:
63+
name: postgres
64+
property: connectionString
65+
66+
- type: redis
67+
region: frankfurt
68+
name: redis
69+
plan: free
70+
ipAllowList: []
71+
72+
databases:
73+
- name: postgres
74+
region: frankfurt
75+
plan: free
76+
postgresMajorVersion: 14
77+
78+
79+
envVarGroups:
80+
- name: app-settings
81+
envVars:
82+
- key: test
83+
value: 1

0 commit comments

Comments
 (0)