Skip to content

Latest commit

 

History

History
23 lines (18 loc) · 345 Bytes

README.md

File metadata and controls

23 lines (18 loc) · 345 Bytes

django-mwe

A minimal working example of a django project.

Setup

Create a virtual environment and install the dependencies:

python -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt

Setup the database:

cd hello
python manage.py migrate

Run the server:

python manage.py runserver