Blank Django project on docker container with Bootstrap and SB Admin connected
- Clone git@github.com:scandiumby/django-billet.git
- Remove .git folder in project
- Rewrite content of
title
andh1
blocks in core/templates/core/pages/home.html - Rewrite project name (see html tag
div
withsidebar-brand-icon class
) in core/templates/core/base-with-sidebar.html - Change port from
8000
(see web/command and web/ports sections) to any other valid if needed in docker-compose.yml and dev.env - Change database name from
djangobillet
to name which you like in docker-compose.yml (see POSTGRES_DB) and dev.env (see end of DATABASE_URL) - go to project folder by terminal and execute
make i
- If you have error with allocate 5432 port for postgres then you will change first number in postgres/ports to any other
- Go to 0.0.0.0:[port from 5 or 8000] in your prefer browser and develop!
- Good luck!
- go to project folder by terminal
git init
git add -v .
git commit -m "init commit"
git branch -M master
git remote add origin [link to github repo]
git push -u origin master