Twitter like micro-blogging website for making posts and following user.
- Install python dependencies
pip install -r requirements
- then
python manage.py makemigrations
python manage.py migrate
- To start server locally
python manage.py runserver
- Visit localhost:8000.
If you want to make change in react components and compile them then you need to install frontend dependencies. do so by running following
npm install
then to compile and bundle them
npm run dev