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.
- Host: GitHub
- URL: https://github.com/winter-code/simple-drf-react-blog
- Owner: winter-code
- Created: 2019-11-14T20:05:00.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-04-22T22:40:17.000Z (about 3 years ago)
- Last Synced: 2023-03-03T14:18:13.286Z (over 2 years ago)
- Topics: blog, django, reactjs
- Language: JavaScript
- Homepage:
- Size: 424 KB
- Stars: 2
- Watchers: 2
- 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*