Bank app for "Wstęp do Bezpieczeństwa Komputerowego" course
Go to Console tab and perform the Django first launch tasks:
python manage.py migrate
- This will perform your initial database migrations.python manage.py createsuperuser
- This will prompt you for some information to create an administrative user.
Run docker compose up -d --build
Run this commands to perform the Django first launch tasks:
docker compose exec web python manage.py migrate --noinput
- This will perform your initial database migrations.docker compose exec web python manage.py collectstatic --noinput
- This will collect all staticfiles.docker compose exec web python manage.py createsuperuser
- This will prompt you for some information to create an administrative user.
With this extension the iban number is replaced to different on /transfers/new
and /transfers/confirm
pages
Todo:
- Add automatic customer group for new accounts
- createuserform is it ok? self.error_messages["password_mismatch"] not defined
- template for emails (auth_code and password reset)