diff --git a/.github/workflows/django.yml b/.github/workflows/django.yml index 9a5ced11..1dd10f60 100644 --- a/.github/workflows/django.yml +++ b/.github/workflows/django.yml @@ -56,7 +56,6 @@ jobs: deploy_to_heroku: runs-on: ubuntu-latest needs: build - # The project is currently hosted on render.com if: false steps: - uses: actions/checkout@v4 diff --git a/README.md b/README.md index 39333fbe..493ec115 100644 --- a/README.md +++ b/README.md @@ -27,7 +27,6 @@ - [Helpful commands for local development with `docker compose`](#helpful-commands-for-local-development-with-docker-compose) - [Deployment](#deployment) * [Heroku](#heroku) - * [Render](#render) * [AWS ECS](#aws-ecs) - [Linters and Code Formatters](#linters-and-code-formatters) @@ -84,7 +83,7 @@ Few important things: - `mypy` is ran as a build step in [`.github/workflows/django.yml`](.github/workflows/django.yml) - ⚠️ The provided configuration is quite minimal. **You should figure out your team needs & configure accordingly** - - It comes with GitHub Actions support, [based on that article](https://hacksoft.io/github-actions-in-action-setting-up-django-and-postgres/) -- It can be easily deployed to Heroku, Render or AWS ECS. +- It can be easily deployed to Heroku or AWS ECS. - It comes with an example list API, that uses [`django-filter`](https://django-filter.readthedocs.io/en/stable/) for filtering & pagination from DRF. - It comes with setup for [Django Debug Toolbar](https://django-debug-toolbar.readthedocs.io/en/latest/) - It comes with examples for writing tests with fakes & factories, based on the following articles - , @@ -329,7 +328,7 @@ docker compose run django python manage.py shell ## Deployment -This project is ready to be deployed either on **Heroku** **Render** or **AWS ECS**. +This project is ready to be deployed either on **Heroku** or **AWS ECS**. ### Heroku @@ -363,21 +362,6 @@ On top of that, we've added `gunicorn.conf.py` with some example settings. 1. Worker settings - 1. A brief description of the architecture of Gunicorn - -### Render - -To get an overview of how Render deployment works, we recommend reading this first - - -There's a current deployment that can be found here - - -**Files related to Render deployment:** - -1. `render.yaml` - - Describes the setup. Also known as [Render Blueprint](https://render.com/docs/blueprint-spec) -1. `docker/*_entrypoint.sh` - - Entrypoint for every different process type. -1. `docker/production.Dockerfile` - - Dockerfile for production build. - ### AWS ECS _Coming soon_