/blog_app_django

Blog App created with Django, Postgresql, Docker. UIKit was used for styling. Based on Antonio Mele Django 2 book.

Primary LanguageCSS

1. Docker ([https://www.docker.com/] )
Install Docker locally. Tested on: Docker version 19.03.5, build 633a0ea

2. Build from docker image
docker-compose build

3. Migrations and superuser
docker-compose run web python manage.py makemigrations blog
docker-compose run web python manage.py migrate
docker-compose run web python manage.py createsuperuser

4. Run app
docker-compose up

4. Stop app
docker-compose stop
command will stop your containers, but it won’t remove them
docker-compose down
command will stop your containers, but it also removes the stopped containers as well as any networks that were created