Skip to content

Latest commit

 

History

History
28 lines (16 loc) · 722 Bytes

README.md

File metadata and controls

28 lines (16 loc) · 722 Bytes

Project report

https://docs.google.com/document/d/1YEYNwQREIahdgi1RX9FeGhKmEHfBMltQuceAgzPNkc8/edit?usp=sharing

Setup

  • Django environment setup: https://developer.mozilla.org/it/docs/Learn/Server-side/Django/development_environment

  • Enter in your Django environment

  • Install the dependencies from requirements.txt

      pip install -r /path/to/requirements.txt
    
  • Provide env.config in the root folder of the project(check env.config.example)

  • Migrate db (enter in .../Facebook_Django/project directory where manage.py is located):

      python manage.py makemigrations
      python manage.py migrate
    
  • Run the project (sslserver for launch localhost with https connection):

      python manage.py runsslserver