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: 8 months ago
JSON representation
A Simple Blog Made Using Django As The Backend (Using Django Rest Framework) And ReactJS As The Frontend.
- Host: GitHub
- URL: https://github.com/winter-code/simple-drf-react-blog
- Owner: winter-code
- Created: 2019-11-14T20:05:00.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T22:40:17.000Z (almost 4 years ago)
- Last Synced: 2025-04-05T07:33:07.716Z (12 months ago)
- Topics: blog, django, reactjs
- Language: JavaScript
- Homepage:
- Size: 424 KB
- Stars: 3
- Watchers: 1
- Forks: 4
- Open Issues: 4
-
Metadata Files:
- Readme: README.md
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*