/django-docker-postgresql

Bare bone project with Django, Docker and PostgreSQL

Primary LanguagePython

django-docker-postgresql

Bare bone study project with Django, Docker and PostgreSQL.

Create a virtual environment:

$ python -m venv venv

Activate the virtual environment:

$ source ./venv/bin/activate

Install dependencies:

$ pip install -r requirements.txt

Run migrations:

$ python manage.py migrate

Run server:

$ python manage.py runserver

Check http://localhost:8000