DeployPRO Django Free Sample
Minimal Django Sample
provided by DeployPRO service for testing.
$ docker-compose up --build
At this point, the app runs at localhost:5000
Install modules via
VENV
$ pip install django
Migrate DB
$ python manage.py makemigrations
$ python manage.py migrate
Start the app
$ python manage.py runserver
At this point, the app runs at http://127.0.0.1:8000/
.
Django Starter - Open-source sample provided by DeployPRO