A twitter like social media platform
- Create virual enviroment and activate it
$ python3 -m venv env
$ source env/bin/activate
- Install all dependencies
(env) $ pip3 install -r requirements.txt
- Make migrations and migrate
(env) $ python3 manage.py makemigrations
(env) $ python3 manage.py migrate
- Run server
(env) $ python3 manage.py runserver