https://github.com/divio/django-celery-divio-quickstart
https://github.com/divio/django-celery-divio-quickstart
Last synced: over 1 year ago
JSON representation
- Host: GitHub
- URL: https://github.com/divio/django-celery-divio-quickstart
- Owner: divio
- License: mit
- Created: 2021-10-19T15:04:47.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2021-10-19T15:09:40.000Z (over 4 years ago)
- Last Synced: 2025-01-20T09:46:43.986Z (over 1 year ago)
- Language: Python
- Size: 11.7 KB
- Stars: 2
- Watchers: 4
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Django Celery Divio quickstart
A Dockerised Django project, ready to deploy on Divio or another Docker-based cloud platform, and run
locally in Docker on your own machine. A Divio account is not required.
This version uses Python 3.8 running and the most up-to-date version of Django 3.1.
This Divio quickstart version has celery support enabled. To get a simpler project, take a look at the plain quickstart project:
https://github.com/divio/django-divio-quickstart/
## Try it
```bash
git clone git@github.com:divio/django-celery-divio-quickstart.git
cd django-divio-quickstart
docker-compose build
docker-compose run web python manage.py migrate
docker-compose run web python manage.py createsuperuser
docker-compose up
open http://127.0.0.1:8000/admin
```
For a more complete how-to guide for this project, see [Deploy a new Django project using the Divio quickstart
repository](https://docs.divio.com/en/latest/how-to/django-deploy-quickstart/) in the [Divio Developer
Handbook](https://docs.divio.com).
## Customising the project
Built-in options are available for using Postgres/MySQL, uWSGI/Gunicorn/Guvicorn, etc.
Again, see [Deploy a new Django project using the Divio quickstart
repository](https://docs.divio.com/en/latest/how-to/django-deploy-quickstart/) for more guidance on customisation.