Skip to content
This repository has been archived by the owner on Feb 12, 2020. It is now read-only.

Latest commit

 

History

History
24 lines (17 loc) · 509 Bytes

README.md

File metadata and controls

24 lines (17 loc) · 509 Bytes

ordered online codes service

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.

Technology Stack

  • Python 3
  • Django

Quickstart

$ 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