Skip to content

ratavare/Transcendence

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Django, PostgreSQL, Bootstrap simple setup

Setup

  • Docker build
make build
  • Access user container
docker exec -it [container] bash
  • Django admin creation
python manage.py createsuperuser
  • Access web page
localhost:8004

Tips

  • 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