A job board built with Django.
Need to have Docker installed. Change .envexample
to .env
and make sure the password and user match those found in settings.py
.
docker-compose up --build
$ docker-compose exec web python src/manage.py makemigrations
$ docker-compose exec web python src/manage.py migrate
$ docker exec -it [CONTAINER_ID] bash
$ cd src
$ python manage.py startapp [APP_NAME]
$ exit