https://github.com/dori-dev/forum
The fullstack forum with Django & React.
https://github.com/dori-dev/forum
django django-rest-framework forum react
Last synced: about 1 month ago
JSON representation
The fullstack forum with Django & React.
- Host: GitHub
- URL: https://github.com/dori-dev/forum
- Owner: dori-dev
- Created: 2023-05-04T19:01:30.000Z (about 3 years ago)
- Default Branch: main
- Last Pushed: 2025-07-14T06:53:28.000Z (11 months ago)
- Last Synced: 2025-10-21T01:05:26.515Z (8 months ago)
- Topics: django, django-rest-framework, forum, react
- Language: Python
- Homepage:
- Size: 2.4 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 18
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Forum
The fullstack forum with Django & React.
#
# How to Run Project
## Build Virtual Environment
```
python -m venv env
```
```
source env/bin/activate
```
## Install Project Requirements
```
pip install -r requirements.txt
```
## BackEnd
```
cd backend
```
## Migrate Models
```
python manage.py migrate
```
## Add Super User
```
python manage.py createsuperuser
```
## Run Project
```
python manage.py runserver
```
## Frontend
```
cd ../frontend
```
## Project Setup
```
npm install
```
## Compiles Development
```
npm start
```
## Open On Browser
Home Page: [localhost:3000](http://localhost:3000/)
#
## Links
Download Source Code: [Click Here](https://github.com/dori-dev/forum/archive/refs/heads/master.zip)
My Github Account: [Click Here](https://github.com/dori-dev/)