osantana /
quickstartup-template
Django Boilerplate Template for SaaS applications
Loading repository data…
Ceci-Aguilera / repository
Boilerplate for Django (Django Rest Framework) React (with React-Bootstrap for styling) Web Application. It uses Docker, Docker-Compose, Nginx, and PostgreSQL
This repository contains a simple boilerplate project setup for Django + React applications. It is intended to have the minimal amount of packages installed by default, and it has a ready-to-test default configuration for Docker.
For example, see Fullstack Web Home Key Renovations. Home Key Renovations (HKR) is a fullstack website that has this repository as base template.
Django: This is the backbone of the backend api, and has the following packages installed:
Note: All this packages are specified in the requirements.txt file inside the django_backend folder. Links to their official documentation can be found at the Useful Links section.
React: The frontend library in use. This was created via npx create-react-app. The only extra packages that were installed (ignoring the ones that are automatically pre-installed) are:
Note: The bootstrap css link has been added to the index.js file that is inside the react_frontend/src folder. The links to the official documentation of these packages is included in the Useful Links section.
Nginx: This is the server for the Docker-Compose testing build. The default configuration in use can be found at the nginx/nginx.conf file.
PostgreSQL: This is the default configured database for this repository. A link to How to install/configure it for Linux/Windows/MacOS is included in the Useful Links section (This is only necessary for when not running with docker-compose). In addition, a link to How to change to MySQL in Django is included as well in the Useful Links section.
Clone the repo:
git clone https://github.com/Ceci-Aguilera/react_django_boilerplate.git
Copy a default setup of the environment variables for the project:
cp example_env .env
cp django_backend/django_backend/settings/example_env django_backend/django_backend/settings/.env
(optional) Edit the values in the previous copied files to create a custom config. Note that the one set by default should work just fine for development.
Run Docker-Compose:
docker-compose up -d --build
Congratulations !!! The app should be up and running. To access the React frontend go to localhost:80, and to access the Django backend go to localhost:80/api. From now on, any call made to localhost:80/api will be redirected to Django while every other path (localhost:80/*) will lead to the React frontend, with localhost:80/admin being the only exception (localhost:80/admin is an special url path that redirects to the Django Admin). In other words, the urls localhost:80/api and localhost:80/admin are reserved for the Django backend, while any other url of the form localhost:80/* redirects to the React frontend.
(optional) To create a super user:
docker-compose run backend ./manage.py createsuperuser
Clone the repo:
git clone https://github.com/Ceci-Aguilera/react_django_boilerplate.git
Copy a default configuration of the environment variables for Django:
cp django_backend/django_backend/settings/example_env django_backend/django_backend/settings/.env
(optional) Edit the values in the previous file that was copied to create a custom config. Note that the one set by default should work just fine for development.
Set up the database. In this case the one in use by default is PostgreSQL. Assuming that PostgreSQL is already installed in the OS, and that the needed configurations for PostgreSQL to run in the OS are done, create a database and an user using the credentials specified in the django_backend/django_backend/settings/.env file that was just created/edited. Note: To now how to install and configure PostgreSQL, see the Useful Links section of this documentation.
Change the default settings.py file in use from docker to development. To do this, go to the file django_backend/django_backend/settings/__init__.py and modify the line
from .docker import *
to
from .dev import *
Create and activate a virtual environment (See the Useful Links section if not know how)
Install the necessary dependencies
cd django_backend
pip install -r requirements.txt
Run Django:
cd django_backend
python manage.py makemigrations
python manage.py migrate
python manage.py runserver
To configure React, from the project root folder go to react_frontend and install the necessary dependencies:
cd react_frontend
npm install
(optional) Add django backend url as proxy. To do so go to react_frontend and edit the package.json, in the block before the "devDependencies" block add
"proxy": "http://localhost:5000/",
Now, that section in the package.json should look like the following:
"development": [
"last 1 chrome version",
"last 1 firefox version",
"last 1 safari version"
]
},
"proxy": "http://localhost:5000/",
"devDependencies": {
"@babel/node": "^7.16.8",
"@babel/plugin-transform-react-jsx": "^7.17.3",
"babel-cli": "^6.26.0",
"babel-preset-es2015": "^6.24.1",
"babel-preset-react": "^6.24.1",
"babel-register": "^6.26.0"
}
Congratulations !!! The app should be up and running. To access the React frontend go to localhost:3000, and to access the Django backend go to localhost:8000.
This repository is divided into 3 main folders (not counting the .readme_assets as it contains only the images displayed in the Readme). These folders are:
django-admin startproject.npx create-react-app.Each project (Django and React as separate projects) is intended to be self contained, and so it can be separately tested without the need of docker-compose.
When running with Docker Compose, there are 4 images that are created: A Django backend Image, a React frontend Image, a Nginx Image, and a PostgreSQL Image. The Dockerfiles for Django, React, and Nginx can be found in their respective folders, i.e, the Django Dockerfile is inside the django_backend folder, and so on. The PostgreSQL image has no custom Dockerfile, instead it is pulled from the Docker Hub, and the environment variables for the docker-compose file can be found at the .env file in the project root folder. This repository does not include that file, instead it offers an example_env file that can be renamed to .env and it should work out of the box (the default environment variables set do not need to be modified).
So far, there is no app created for Django, and so, the only important folder so far is the settings folder inside the django_backend/django_backend folder. This contains different settings.py files for different environment. For example, the dev.py file has the default settings to run in the development environment, while the docker.py file has the default settings to run when using docker-compose. All of these files has the base.py file as their parent file (the base.py file has the settings to be shared among the environments), and so they all should have
from .base import *
as their first line. To change between environments, go to the django_backend/django_backend/__init__.py file and edit its first line. By default it should be
from .docker import *
To change to the environment x, replace that line with
from .x import *
Next, the templates, static, and media folders have been created (and configured in the settings) to store the hml, css, ... files.
Aside from the package.json and the src/index.js files there are no other edited files in this folder.
The following structure is used by the owner of this repository when working on a React project, and it was taken from the Next js workflow:
react_frontend
|___ src
|____ components
|____ pages
|____ styles
|____ assets
Inputs and contributions to this project are appreciated. To make them as transparent and easy as possible, please follow this steps:
Selected from shared topics, language and repository description—not editorial ratings.
osantana /
Django Boilerplate Template for SaaS applications
carloocchiena /
Django ready-made web applications for various purposes.
endormi /
List of reasons why django is awesome for web development & django bootstrap boilerplate
Run React while inside the react_frontend folder:
npm start
sachnaror /
A supercharged starter kit for Django and Python, ready to roll with top-notch security, Google & Facebook login, and crispy Bootstrap v5. Fully dockerized, test-covered, and deployable anywhere, from Heroku to AWS. It even takes its coffee with SSL!
ChAbdulWahhab /
Projex — the fastest way to bootstrap Python projects. Generate complete, production-ready templates for any framework in seconds — from FastAPI to Django, with Docker, CI/CD, and testing already wired in.
filwaitman /
Bootstrap template for creating a Python/Django lib with all the boilerplate for you