https://img.shields.io/github/last-commit/David2261/social_site
The project is a light form of messenger (similar to reddit); In which you can create an article and choose a topic, and leave a comment; You can login or make new account; A form for the api has been created;
- First you need to create an environment:
- For that you need install virtualenv
pip install virtualenv
- For that you need install virtualenv
- After that you can create your new environment:
virtualenv venv
- Second you need activate env
- If you using windows, you can activate env like me:
venv\Scripts\activate
- Thirt you need install all pip's which contain in requirements.txt:
pip install -r requirements
- First we make our migrations:
python manage.py makemigrations
python manage.py migrate
python manage.py runserver