DEV Community

Cover image for React Django - Open-Source Full-Stack Seed Project
Sm0ke
Sm0ke

Posted on • Originally published at appseed.us

React Django - Open-Source Full-Stack Seed Project

Hello Coders!

This article presents an open-source full-stack project that uses a modern React UI (styled with Chakra) powered by a simple Django API Server (also free): Django React Purity can be used as a starter codebase for a future end-product or simply by beginners for eLearning activities. For newcomers, React is a popular JavaScript library for coding user interfaces baked by Facebook and Django is a leading web framework used to manage the backend logic.

Thanks for reading! - Content provided by App Generator.



React Django - Open-Source Full-Stack Seed Project, GIF animated presentation


Product Features

This free product comes with a production-ready JWT Authentication flow, Docker scripts for UI & the backend and a permissive license that permits unlimited copies for hobby & commercial end-products.

  • Innovative Chakra UI Design
  • React, Redux, Redux-persist
  • Authentication: JWT Login/Register/Logout
  • Full-stack Ready using a Django API Server (open-source project):
    • Django / DRF / SQLite3 - a simple, easy to use backend
    • Authentication with JWT (login, logout, register)
    • Docker, Unitary tests

The product is built using a two-tier pattern where the React frontend is decoupled logically and physically from the API backend. To use the product, a short action list must be completed successfully:

  • Compile and start the Django API Backend
    • by default the server starts on port 5000
  • Compile and start the React UI
    • UI will start on port 3000 and expects a running backend on port 5000
  • Configuration (Optional)
    • Change the API port
    • Configure the API port used by the React UI to communicate with the backend

Start in Docker

Probably the fastest way to use the product in a local environment is via Docker. Both parts of the product can be used in Docker.


Step #1 - Clone/Download the source code

$ git clone  https://github.com/app-generator/django-react-purity-dashboard.git
Enter fullscreen mode Exit fullscreen mode

Step #2 - Start the Django API

$ cd django-api
$ docker-compose pull   # download dependencies 
$ docker-compose build  # local set up
$ docker-compose up     # start the app 
Enter fullscreen mode Exit fullscreen mode

At this point, the API should be up & running at http://localhost:5000, and we can test the interface using POSTMAN or curl.


Step #3 - Start the React UI (using another terminal)

$ cd react-ui
$ docker-compose pull   # download dependencies 
$ docker-compose build  # local set up
$ docker-compose up     # start the app 
Enter fullscreen mode Exit fullscreen mode

Once all the above commands are executed, the React UI should be visible in the browser. By default, the app redirects the guest users to authenticate.
After we register a new user and Sign IN, all the private pages become accessible.


React Django Purity - Login Page.


React Django Purity - User profile page

React Django Purity - User profile Page.


React Django Purity - Main Dashboard Page

React Django Purity - Main Dashboard Page


Thanks for reading! For more resources, please access:


Top comments (3)

Collapse
 
uithemes profile image
ui-themes

The colors combination is great.

Collapse
 
sm0ke profile image
Sm0ke

🚀🚀

Collapse
 
lewiskori profile image
Lewis kori

Love this. Good job!