pip install -r requirements.txt
python manage.py makemigrations
python manage.py migrate
npm install
npm run dev-watch
python manage.py runserver
## Running Celery
Celery can be used to run background tasks. To run it you can use:
```bash
celery -A mail worker -l INFO
These instructions will cover usage information and for the docker container
In order to run this container you'll need docker installed.
- For create and start container and build images
docker-compose up --build
docker-compose run web python3 manage.py createsuperuser
- For start specific service
docker-compose up <service name>
- For view images
docker-compose images
- For view containers
docker-compose ps
- For stop services
docker-compose stop
- For kill services
docker-compose kill
- For remove stopped containers
docker-compose rm
- For stop all containers and remove images, volumes
docker-compose down