An open API service indexing awesome lists of open source software.

https://github.com/winter-code/simple-drf-react-blog

A Simple Blog Made Using Django As The Backend (Using Django Rest Framework) And ReactJS As The Frontend.
https://github.com/winter-code/simple-drf-react-blog

blog django reactjs

Last synced: 6 months ago
JSON representation

A Simple Blog Made Using Django As The Backend (Using Django Rest Framework) And ReactJS As The Frontend.

Awesome Lists containing this project

README

        

# Simple-DRF-React-Blog

Fork the repo and clone it in your machine.
## Django-setup
```
virtualenv env
```

```
source env\bin\activate
pip install -r requirements.txt
```
Start backend server at 8000 after moving to project folder, using -
```
python manage.py runserver
```

## React-setup
Move to frontend folder, then
```
npm init -y
npm install
```

Then to start front end server at 3000
```
npm start
```

You might need to update npm. Use, *sudo npm install npm@latest -g*