IBANapp
A small Django/Angular application that provides management (CRUD) of user bank accounts(IBAN) for administartors logged in with the google account.
- Ansible >= 2.3.0.0
- Vagrant >= 1.9.4
- VirtualBox >= 5.1.22
$ vagrant up --provider=virtualbox
Wait a few minutes for the magic to happen.
backend: src/backend/backend/local_settings.py
...
SOCIAL_AUTH_GOOGLE_OAUTH2_KEY = "<KEY>"
SOCIAL_AUTH_GOOGLE_OAUTH2_SECRET = "<SECRET>"
frontend: src/frontend/local_constants.json
{
...
"GOOGLE_API_CLIENT_ID": "<KEY>"
}
# ssh to the vagrant box
$ vagrant ssh
# inside the vagrant box
$ cd backend/
$ ./manage.py runserver 0.0.0.0:8000
$ cd frontend/
$ grunt serve
You're able to get access to the app by going to this URLs:
frontend: http://localhost:9000/
backend (admin): http://localhost:8000/admin/