MertUnlu-SWE / SWE-573-MertUnlu

0 stars 0 forks source link

Setup Python Django Project For Mysterium Platform #7

Closed MertUnlu-SWE closed 3 weeks ago

MertUnlu-SWE commented 3 weeks ago
  1. After installing python on the computer enter the "python --version" command to see if the python and the version is correctly installed.
  2. With python installed and checked use the "pip install Django" command to be able to download the framework.
  3. Use "django-admin startproject (projectName)" to create the project.
  4. Use "pip freeze > (requirement.txt)" command to create and write the version requirements to a text file
  5. Enter the "python manage.py runserver" command to execute and test if it is working as expected.