Plug-in SME
- In project folder, create a Virtual Environment:
python -m venv venv- Activate Virtual Environment:
venv\Scripts\activate- Create migartion files for new app:
python manage.py makemigrations new_app- Start migartion process:
python manage.py migratepython manage.py seed_inventory- Run the following command in terminal:
python manage.py createsuperuser- Input information...
- Start project:
python manage.py runserver- Default URL:
http://127.0.0.1:8000/