Frontend website for the Military Credit Equivalency project
- Navigate to the
www
directory - Run
python3 manage.py migrate
- Run
python3 manage.py runserver
- Open a browser and then go to
127.0.0.1:8000
- To build the container run
sudo docker-compose build
**This only needs to be ran when you changerequirements.txt
,compose/webserver/Dockerfile
, ordocker-compose.yml
- To run the Django server run
docker-compose up
- docker ps -a //This lists the container processes. You'll need the container ID for our container.
- docker exec -it /bin/bash //This is effectively a chroot (change root) operation.