Giter Site home page Giter Site logo

django-postgres-docker's Introduction

Django, Postgres, Docker

A multi-container Django and Postgres Docker Project.

Run from Docker containers

  1. Create and customize .env/postgres.env file.
POSTGRES_DB=your-db-name
POSTGRES_USER=your-db-username
POSTGRES_PASSWORD=choose-a-strong-password
POSTGRES_HOST=db
POSTGRES_PORT=5432
  1. Build and start the containers.
$ docker-compose up
  1. Browse to localhost:8000/ to verify that Django is running successfully from the containers.

Run locally

  1. If you like to be able to run Django commands from your local machine as well, create and customize a .env/django_local.env file.
DJANGO_SECRET_KEY='move-your-Django-secret-to-this-file'
POSTGRES_DB=same-as-postgres.env
POSTGRES_USER=same-as-postgres.env
POSTGRES_PASSWORD=same-as-postgres.env
POSTGRES_HOST=localhost
POSTGRES_PORT=same-as-postgres.env
  1. Source and export local environment settings.
$ source .env/django_local.env && export $(cut -d '=' -f 1 .env/django_local.env)
  1. Create, Activate a virtualenv, e.g. using virtualenvewrapper.
$ mkvirtualenv venv
  1. Install requirements
(venv) $ pip install -r requirements.txt
  1. Run initial Django migration.
(venv) $ python manage.py migrate
  1. Run a local server on a different port.
(venv) $ python manage.py runserver 8080

Create Super User and login to Django Admin

  1. Stop the local server and the docker containers.

  2. Create your Django super user

(venv) $ python manage.py createsuperuser
  1. Run your local server and/or docker containers and verify that you can login to the admin site by navigating to: local server: localhost:8080/admin docker server: localhost:8000/admin

django-postgres-docker's People

Contributors

bkeyvani avatar

Stargazers

 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.