::Authentication server::
Tested on Linux and MacOS only!
- Python:
v3.8.9
- Pip3 package:
virtualenv
- Database:
SQLite3
# Create activate and install dependencies
$ virtualenv -p /usr/bin/python3 venv
$ source venv/bin/activate
$ pip install -U pip
$ pip install -r requirements.txt
# Migrate database and run the dev server
$ python manage.py migrate
$ python manage.py runserver
$ docker-compose up --build