Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/divio/django-cms-divio-quickstart
A Dockerised django CMS 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.
https://github.com/divio/django-cms-divio-quickstart
divio django django-cms docker
Last synced: about 2 months ago
JSON representation
A Dockerised django CMS 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.
- Host: GitHub
- URL: https://github.com/divio/django-cms-divio-quickstart
- Owner: divio
- License: mit
- Created: 2021-01-18T17:28:47.000Z (almost 4 years ago)
- Default Branch: main
- Last Pushed: 2021-11-02T13:11:14.000Z (about 3 years ago)
- Last Synced: 2023-04-10T18:25:44.859Z (almost 2 years ago)
- Topics: divio, django, django-cms, docker
- Language: Python
- Homepage: https://docs.divio.com/en/latest/how-to/django-cms-deploy-quickstart/
- Size: 8.79 KB
- Stars: 10
- Watchers: 4
- Forks: 16
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# django CMS Divio quickstart
A Dockerised django CMS 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 versions of Django 3.1 and django CMS 3.8.
## Try it
```bash
git clone [email protected]:divio/django-cms-divio-quickstart.git
cd django-cms-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
```For a more complete how-to guide to this project, see [Deploy a new django CMS project using the Divio quickstart
repository](https://docs.divio.com/en/latest/how-to/django-cms-deploy-quickstart/) in the [Divio Developer
Handbook](https://docs.divio.com).## Customising the project
This project is ready-to-go without making any changes at all, but also gives you some options.
As-is, it will include a number of useful django CMS plugins and Bootstrap 4 for the frontend. You don't have to use
these; they're optional. If you don't want to use them, read through the `settings.py` and `requirements.txt` files to
see sections that can be removed - in each case, the section is noted with a comment containing the word 'optional'.Options are also available for using Postgres/MySQL, uWSGI/Gunicorn/Guvicorn, etc.
Again, see [Deploy a new django CMS project using the Divio quickstart
repository](https://docs.divio.com/en/latest/how-to/django-cms-deploy-quickstart/) for more guidance on customisation.