- Docker build
make build
- Access user container
docker exec -it [container] bash
- Django admin creation
python manage.py createsuperuser
- Access web page
localhost:8004
- Connection
To start remote server do (there may be another and more efficient way):
ngrok http [PORT]
Don't forget to change redirect uri in intra.42 API config page
Always remember to do:
docker exec -it [container] bash
python manage.py migrate
after doing make re