AbelHristodor / DjangoBoilerplate

Simple django boilerplate using docker, rabbitmq and celery. First time trying docker and docker-compose

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Django Boilerplate

Build Status

This is an example of a simple boilerplate of a dockerized django project using celery and rabbitmq for managing tasks.
There's also a premade example of an async task.

It also includes:

  • Bootstrap 4.0.0 - w/ jquery & popperjs
  • Postgresql DB

Bootstrap

To use this project as a template, start your new project using:

django-admin startproject myproject --extension py,yml,json --name README.md --template https://github.com/AbelHristodor/django-boilerplate/archive/master.zip

Or you can pull the repository and then remane the project:

python manage.py rename yourprojectname

Installation Guide:

Firstly install docker and docker compose. Check https://docs.docker.com/compose/install/ for docker-compose and https://docs.docker.com/install/ for docker.

Git clone the project in a folder and then create a .env file and paste the following inside:

# Database credentials

DATABASE_HOST=postgres
DATABASE_NAME=postgres
DATABASE_USER=postgres
DATABASE_PASSWORD=postgres

# Memcached host
MEMCACHED_HOST=memcached

Then go to the base directory and run:
docker-compose up --build

Once finished, while the app is running, open another terminal and migrate the app using:
docker-compose run --rm web scripts/migrate_loaddata.sh

The app will be running at: http://localhost:8000/

App management

  • To start the app use docker-compose up
  • To stop the app use docker-compose down

If you can't run those command without sudo see: Docker-docs-for-linux or Stackoverflow-fix

Thanks to @Silvian for helping me :))

About

Simple django boilerplate using docker, rabbitmq and celery. First time trying docker and docker-compose


Languages

Language:Python 79.0%Language:HTML 10.4%Language:Dockerfile 7.5%Language:Shell 3.0%