You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardexpand all lines: README.md
+21-5
Original file line number
Diff line number
Diff line change
@@ -31,6 +31,7 @@
31
31
-[Helpful commands for local development with docker-compose](#helpful-commands-for-local-development-with-docker-compose)
32
32
-[Deployment](#deployment)
33
33
*[Heroku](#heroku)
34
+
*[Render](#render)
34
35
*[AWS ECS](#aws-ecs)
35
36
-[Linters and Code Formatters](#linters-and-code-formatters)
36
37
@@ -53,7 +54,7 @@ Few important things:
53
54
-`mypy` is ran as a build step in [`.github/workflows/django.yml`](.github/workflows/django.yml)
54
55
- ⚠️ The provided configuration is quite minimal. **You should figure out your team needs & configure accordingly** - <https://mypy.readthedocs.io/en/stable/config_file.html>
55
56
- 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.
57
58
- It comes with an example list API, that uses [`django-filter`](https://django-filter.readthedocs.io/en/stable/) for filtering & pagination from DRF.
58
59
- 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>
59
60
@@ -296,16 +297,14 @@ docker-compose run django python manage.py shell
296
297
297
298
## Deployment
298
299
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**.
300
301
301
302
### Heroku
302
303
303
304
Deploying a Python / Django application on Heroku is quite straighforward & this project is ready to be deployed.
304
305
305
306
To get an overview of how Heroku deployment works, we recommend reading this first - <https://devcenter.heroku.com/articles/deploying-python>
306
307
307
-
There's a current deployment that can be found here - <https://django-styleguide.hacksoft.io/>
308
-
309
308
**Files related to Heroku deployment:**
310
309
311
310
1.`Procfile`
@@ -332,6 +331,23 @@ On top of that, we've added `gunicorn.conf.py` with some example settings.
0 commit comments