Skip to content
This repository has been archived by the owner on Jul 21, 2023. It is now read-only.

Latest commit

 

History

History
73 lines (41 loc) · 1.37 KB

README.rst

File metadata and controls

73 lines (41 loc) · 1.37 KB

Django Boilerplate

Description

Bare bones starter project complete with the following

  • Email authentication
  • Login, password reset, password change
  • Karma CSS

Getting Started

1, Clone the repo:

git clone https://github.com/AccentDesign/django_boilerplate.git

2, Docker & Python

Build the container:

docker-compose build

Up the container, this will also run migrations for you:

docker-compose up

Create yourself a superuser:

docker-compose exec app bash
python manage.py createsuperuser --email=admin@example.com --first_name=Admin --last_name=User

Run python migrations manually:

docker-compose exec app bash
python manage.py migrate

Ready!!

The container is ready at http://<docker host ip>:8000/ and a mail server ready at http://<docker host ip>:8025/

Testing

To see the test results and coverage report run:

docker-compose exec app bash
python manage.py test

The html coverage report is visible in the browser by looking at the htmlcov/index.html once the tests have run.

Styles

npm install:

npm install

build css:

npm run watch:scss