A blog website where a user can create, read, update and delete blogs.
Techstack used:
- Frontend: ReactJs
- Backend: Django Framework(REST API)
The first thing to do is to clone the repository:(Commands are for Windows OS)
git clone https://github.com/rane-shubham/Matrix-Blog.git
cd Matrix-Blog/BlogAPI
Create a virtual environment to install dependencies in and activate it:
python3 -m venv venv
venv/Scripts/activate
Then install the dependencies:
pip install -r requirements.txt
Note the (env)
in front of the prompt. This indicates that this terminal session operates in a virtual environment set up.
python3 manage.py runserver
Your rest_api has been setup.