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

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.

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/)