Online Shop 1. How to install (Windows / Linux / Mac) git clone https://github.com/edu-vector/OnlineShop.git 2. Create virtual environment py -m venv venv 3. Install Python libraries from requirements.txt pip install -r requirements.txt 4. Set migrations py manage.py makemigrations py manage.py migrate 5. Create Superuser py manage.py createsuperuser 6. Run project on your localhost py manage.py runserver 2. How to pull from (GitHub/GitLab) 1. Check the status of your repository git status 2. If you have any changes, commit them (Optional) git add . git commit -m "Your message" 3. Pull the latest changes from the remote repository git pull origin main 3. How to push to (GitHub/GitLab) 1. Check your code git status 2. Add local variables git add . 3. Write commit git commit -m "<dercribe, what do you do to code>" 4. Push to (GitHub/GitLab) git push origin <your_branch>