1.1 Run this command
git clone https://github.com/Prrromanssss/Fastgram.git
2.1 First of all, from root directory run this commands to activate venv
python3 -m venv venv
source venv/bin/activate
python -m venv venv
.\venv\Scripts\activate
3.3 Run this command
pip install -r requirements.txt
4.1 Generate file '.env' in root directory with structure specified in the 'examples/env_example.txt' file
5.1 To apply your migrations run this command
python fastgram/manage.py migrate
6.1.1 To load data for database from the fixtures run this command
python fastgram/manage.py loaddata data.json
7.1.1 If you have loaded data from the fixtures, run this command to authorize admin user
python fastgram/manage.py createsuperuser
8.1 Run this command
python fastgram/manage.py runserver
8.2 After running server follow link '127.0.0.1:8000/admin' or 'localhost:8000/admin'