This django based micro service provides an API to obtain codes for user authentication. The service creates disposable codes on demand. Each code has its own unique string. Any code, but also other values can be rendered to a qr code.
- Python 3
- Django
$ python3 -m pip install -r requirements.txt
Run the server in development mode.
$ cd codes
$ python3 manage.py migrate
$ python3 manage.py runserver 127.0.0.1:8003