https://github.com/app-generator/django-react-recharts
Django & React - ReCharts Integration (free) | AppSeed
https://github.com/app-generator/django-react-recharts
django-react recharts
Last synced: 3 months ago
JSON representation
Django & React - ReCharts Integration (free) | AppSeed
- Host: GitHub
- URL: https://github.com/app-generator/django-react-recharts
- Owner: app-generator
- License: other
- Created: 2023-04-06T09:30:23.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-04-10T08:37:28.000Z (over 2 years ago)
- Last Synced: 2025-07-20T05:56:39.144Z (4 months ago)
- Topics: django-react, recharts
- Language: Python
- Homepage:
- Size: 109 KB
- Stars: 1
- Watchers: 2
- Forks: 1
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
- Changelog: CHANGELOG.md
- License: LICENSE.md
Awesome Lists containing this project
README
# [Django & React Codebase](https://github.com/app-generator/django-react-starter)
Open-source **Django Starter** bundled with React, React-Flow - Actively supported by AppSeed.
- 👉 [Django & React](https://django-react-starter.onrender.com/) - `LIVE deployment`
- 🚀 Free [Support](https://appseed.us/support/) via `Email` & `Discord`
> Feature:
- 🚀 `Stack`: **Django** & **React**
- ✅ Tooling: `Webpack`
- ✅ `Design`: [Django Theme Datta](https://github.com/app-generator/django-admin-datta) - `Free Version`
- ✅ `Sections` covered by the design:
- ✅ **Admin section** (reserved for superusers)
- ✅ **Authentication**: `Django.contrib.AUTH`, Registration
- ✅ **All Pages** available in for ordinary users
- 🚀 `Deployment`: Docker, `CI/CD` flow via `Render`
[](https://github.com/app-generator/django-react-starter)
## Start with `Docker`
> 👉 **Step 1** - Download the code from the GH repository (using `GIT`)
```bash
$ git clone https://github.com/app-generator/django-react-starter.git
$ cd django-react-starter
```
> 👉 **Step 2** - Start the APP in `Docker`
```bash
$ docker-compose up --build
```
Visit `http://localhost:5085` in your browser. The app should be up & running.
## Manual Build
> Download the code
```bash
$ git clone https://github.com/app-generator/django-react-starter.git
$ cd django-react-starter
```
### 👉 Set Up for `Unix`, `MacOS`
> Install modules via `VENV`
```bash
$ virtualenv env
$ source env/bin/activate
$ pip3 install -r requirements.txt
```
> Set Up Database
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```
> Start the APP
```bash
$ python manage.py createsuperuser # create the admin
$ python manage.py runserver # start the project
```
At this point, the app runs at `http://127.0.0.1:8000/`.
### 👉 Set Up for `Windows`
> Install modules via `VENV` (windows)
```
$ virtualenv env
$ .\env\Scripts\activate
$ pip3 install -r requirements.txt
```
> Set Up Database
```bash
$ python manage.py makemigrations
$ python manage.py migrate
```
> Start the APP
```bash
$ python manage.py createsuperuser # create the admin
$ python manage.py runserver # start the project
```
At this point, the app runs at `http://127.0.0.1:8000/`.
## Codebase Structure
The project is coded using a simple and intuitive structure presented below:
```bash
< PROJECT ROOT >
|
|-- core/
| |-- settings.py # Project Configuration
| |-- urls.py # Project Routing
|
|-- apps/
| |-- home/ # Handle the default route
|
|-- frontend/ # React Code
|
|-- requirements.txt # Project Dependencies
|-- manage.py # Start the app - Django default start script
|
|-- ************************************************************************
```
---
[Django & React Codebase](https://github.com/app-generator/django-react-starter) - `Open-Source` starter crafted by **[AppSeed](https://appseed.us)**.