Use [pipenv]
or [pip]
to install dependencies:
The Pipifile and Pipfile.lock files contains info about project dependencies. To install all dependencies form a Pipifile the pipenv package required.
Install the pipenv package:
pip install pipenv
Once pipenv is installed, the following command will create virtual enviroment and install all project dependencies:
pipenv install
To install all dependencies form a requirements.txt file enter the following command:
pip install -r requirements.txt
For the server to run properly, the .env file has to be created, which has to contain environment variables, such as:
SECRET_KEY=some-key
To start the server run:
python mange.py runserver
Username: admin Password: admin E-mail: admin@example.com