Local Development

Copy the .env.example and fill in the required variables

cp .env.example .env

Start up the containers

docker-compose up -d

Make Migrations

docker-compose run web python manage.py makemigrations

Run migrations

docker-compose run web python manage.py migrate

Create a superuser

docker-compose run web python manage.py createsuperuser

Collect Static Assets

docker-compose run web python manage.py collectstatic

Seed the discord credentials into the database for allauth

docker-compose run web python manage.py load_discord_social_app