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.
|
|
2 years ago | |
|---|---|---|
| backend | 2 years ago | |
| base | 2 years ago | |
| .gitignore | 2 years ago | |
| README.md | 2 years ago | |
| manage.py | 2 years ago | |
| requirements.txt | 2 years ago | |
README.md
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