Skip to content

alexandermaliou/MailSaaS

Repository files navigation

MailSaaS

Installation

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

Getting Started with Docker

These instructions will cover usage information and for the docker container

Prerequisities

In order to run this container you'll need docker installed.

Commands for this project

  • For create and start container and build images
docker-compose up --build    

Create superuser on Docker

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

About

No description, website, or topics provided.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published