https://github.com/persteenolsen/django-starter-two
Python and Django Website hosted at Vercel using MySQL. Ready for serving static files and using Django models for a Blog, Employees and Todos. DevOps by GitHub and Vercel Cloud
https://github.com/persteenolsen/django-starter-two
django mysql python vercel
Last synced: 29 days ago
JSON representation
Python and Django Website hosted at Vercel using MySQL. Ready for serving static files and using Django models for a Blog, Employees and Todos. DevOps by GitHub and Vercel Cloud
- Host: GitHub
- URL: https://github.com/persteenolsen/django-starter-two
- Owner: persteenolsen
- Created: 2025-04-27T10:15:03.000Z (about 1 year ago)
- Default Branch: main
- Last Pushed: 2026-01-02T08:00:30.000Z (6 months ago)
- Last Synced: 2026-01-08T05:38:50.320Z (6 months ago)
- Topics: django, mysql, python, vercel
- Language: Python
- Homepage: https://django-starter-two.vercel.app
- Size: 1.2 MB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Python + Django + MySQL + Models + CRUD + Vercel
This example shows how to use Django 5.1.11 on Vercel with Serverless Functions using the [Python Runtime](https://vercel.com/docs/concepts/functions/serverless-functions/runtimes/python).
Last updated: 18-05-2026
Node version selected at Vercel Cloud: 22
## Demo at Vercel
https://django-starter-two.vercel.app/
## Installing
- Download Python from the official website [Python](https://python.org/)
- Make sure that you have installed Python by the command in Powershell: "python --version"
- Download the Python extension for Visual Studio Code which automatically include the Pylance extionsion
- Download / fork this Django Starter Website from my GitHub
- Create the virtual envirement ".venv" for the Django Web App by Powershell or by VS Code
- Virtual Enviroment by VS Code: "View - Command Palette - Python Create Enviroment"
## Install by Python commands in Powershell at Windows 10
- python -m venv .venv
- cd .venv
- Scripts/activate
- Copy requirements.txt to .venv
- (.venv) pip install -r requirements.txt
- (.venv) pip freeze > requirements.txt
- (.venv) cd ../
- (.venv) python manage.py runserver
When starting the Django Website from the Vertual Enviroment (.venv) you will notice that Django 5.1.11 will start. Otherwise you can use the Global Django if you have one installed by running:
- python manage.py runserver
The Administration Backend can use MySQL for Dev + Prod but can also work with a SQLite DB for developement locally ( Dev )
## How it Works
Our Django application, `example` is configured as an installed application in `vercel_app/settings.py`:
```bash
# vercel_app/settings.py
INSTALLED_APPS = [
# ...
'example',
]
```
We allow "\*.vercel.app" subdomains in `ALLOWED_HOSTS`, in addition to 127.0.0.1:
```bash
# vercel_app/settings.py
ALLOWED_HOSTS = ['127.0.0.1', '.vercel.app']
```
The `wsgi` module must use a public variable named `app` to expose the WSGI application:
```bash
# vercel_app/wsgi.py
app = get_wsgi_application()
```
The corresponding `WSGI_APPLICATION` setting is configured to use the `app` variable from the `vercel_app.wsgi` module:
```bash
# vercel_app/settings.py
WSGI_APPLICATION = 'vercel_app.wsgi.app'
```
This Django example uses the Web Server Gateway Interface (WSGI) with Django to enable handling requests on Vercel with Serverless Functions.
## Routing
There are severals views in `example/views.py` which load HTML Django Templates `templates`:
The views are exposed a URL through `example/urls.py`:
```bash
# example/urls.py
from django.urls import path
from example.views import index
from example.views import about
from example.views import me
urlpatterns = [
path('', index),
path('about', about),
path('me', me),
]
```
Finally, it's made accessible to the Django server inside `vercel_app/urls.py`:
```bash
# vercel_app/urls.py
from django.urls import path, include
urlpatterns = [
...
path('', include('example.urls')),
]
```
## Templates
To use templates create the dir 'templates' at root level and put the HTML files there
There is only one Django App in the Project and the dir 'templates' can be at root level
Tell Django where to look for Templates by `example/settings.py`:
Find the section TEMPLATES = [] and add the dir of the Templates
'DIRS': [BASE_DIR / 'templates']
## Running Locally
```bash
python manage.py runserver
```
Your Django application is now available at `http://127.0.0.1:8000/`.
## The Admin Backend and Databases
The Admin Backend is using a MySQL Database for both Dev + Prod, but is able to use a SQLite for Dev
To connect to the MySQL install the Python package "pymysql" and the packages from the requirements.txt
```bash
pip install -r requirements.txt
```
Take a look at the files needed for connecting to MySQL: `vercel_app/mysql_setup.py` and
`vercel_app/__init__.py`
Create a Super User for the Admin Backend in the MySQL
```bash
python manage.py createsuperuser
```
Make the Migration to the MySQL DB
```bash
python manage.py makemigrations
python manage.py migrate
```
You will need to do the Migration at first and when / if you will add, update or delete models.py which this Django Web App does not use
For using a SQLite developing / locally make the config in the setting file `vercel_app/settings.py`
Find the section DATABASES = {} and add support for SQLite and comment out the MySQL
## Static files for the Admin Backend and the Frontend
There is only one Django App in the Project and the dir 'static' and 'assets' can be created at root level
Make sure that the Python package 'whitenoise' is installed from the requirements.txt
Note: Make sure you have the line 'whitenoise.middleware.WhiteNoiseMiddleware' in the
MIDDLEWARE = [] at the `vercel_app/settings.py` along with the other packages
Finally, take a look at `vercel_app/settings.py`:
Find where Django now looks for the static files
STATIC_URL = 'static/'
Where you put your static files in the dir 'static'
STATIC_ROOT = BASE_DIR/'static'
## Additional directory from which to load static files if wanted
The files in the dir 'asset' will be copied to the dir 'static' after running
```bash
python manage.py collectstatic
```
The static files for the Admin Backend will also be created in the dir 'static' by the above command
STATICFILES_DIRS = [
os.path.join(BASE_DIR, 'assets')
]
## Check that Django is serving static files by URL
Type the URL in your Browser after deployment to Vercel
https:// your project at vercel.app/static/pso-django.jpg
or the URL when running locally
`http://127.0.0.1:8000/static/pso-django.jpg`
If everything is fine my photo will be displayed
The CSS files can be tested the same way like the .jpg above
Now you can use the images and CSS in your Templates
## Running Locally and take a look at the Admin Backend
```bash
python manage.py runserver
```
The Django application is now available at `http://127.0.0.1:8000/admin`
## Deployment to Vercel
Make sure that your static files are ready by running
```bash
python manage.py collectstatic
```
Take a look at the file `vercel.json`
Make sure to set Debug = False in the file `vercel_app/settings.py`
Make a commit to your GitHub and your Django will build and deploy
## Things for improvement
You could try to add a model.py for the Admin Backend + Frontend
## Models
Add three simple Models "Post", "Employee" and "Todo" to be administrated by the Admin Backend and displayed by the Frontend. The "Employee" and "Todo" can also be adminstrated by the Frontend by CRUD
- Create a file `example/models.py` with your new Model Post Employee and Todo
- Make a regitration of your Models in `example/admin.py`
- Create the View for handling the Posts Employees and Todos `example/views.py`
- Add the view / template blog employees and todos in `example/urls.py`
- Create a Template for display the Posts `templates/blog.html`
- Create a Template for display the Employees `templates/employees.html`
- Create a Template for display the Todos `templates/todos.html`
- Create a folder with the path: `example/migrations` and run the command:
```bash
python manage.py makemigrations example
```
Note: It is important to add the name of the app in the command `example` !!!
This command will create a file for the migration of the Models to three Tables in the MySQL DB
- Now run the command:
```bash
python manage.py migrate
```
This will create the Tables Post Employee and Todo in the DB and you are now ready for administrate the Posts Employees and Todo by the Django Admin Backend
## Customize Templates of the Admin Backend
I customized the Header of the Django Admin to make sure it always will have a minimum height to avoid
that the responsive menu sometimes is hidden. That can happen when there is a lot content in some of the Admin pages like change password or when Recent History grows. Create a folder admin inside the templates and copy the below files from your Django installation. Then in the templates / admin I customized:
- base.html
- base_site.html
- base_theme_toogle.html
- index.html
- login.html
In the vercel_app / urls.py the Django Admin Title and Header text was customized
## Tips and tricks
Hide the Django Secret Key which keeps your app secure by signing cookies, passwords, and other sensitive data
Open Powershell and generate a new secret key:
- python manage.py shell
Now paste the following lines of code
```bash
>>> from django.core.management.utils import get_random_secret_key
>>> print(get_random_secret_key())
```
A Secrey key will be printed which you can copy and save in the .env file and by environment variables in Production
Note: You may want to have a url safe secret key if your host not allows specials charactars in the enviroment variables and you can use:
```bash
>>> import secrets
>>> print(secrets.token_urlsafe(50))
```
This will also print a Secret key
Leave the shell by typing:
```bash
>>> exit()
```
Happy use of Django :-)