You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

554 B

python3 -m venv back_venv

Creates python virutal env

. back_venv/bin/activate

uses venv

python manage.py runserver

launches the development server at 127.0.0.1:8000

python manage.py runserver <your_port>

launches the development server at a custom port

python manage.py startapp <app_name>

creates a new app in the current directory

python manage.py createsuperuser

starts admin user creation process in terminal

pip install -r requirments.txt

installs requirements filed