Biometric Access Control System
1.0.0
An access control system built with Django. It makes use of fingerprints to grant/deny access
Secugen Hampster Pro Fingerprint scanner (recommended)
Secugen Web API. Here are the download links:
STEP 1: Clone the repository:
$ git clone https://github.com/IfeOlulesi/ToDo-App-Django.git
$ cd ToDo-App-DjangoSTEP 2: (Optional but Recommended) Create a virtual environment to install dependencies in and activate it:
$ virtualenv2 --no-site-packages env
$ source env/bin/activateSTEP 3: Install the dependencies:
$ pip install -r requirements.txtIf you followed STEP 2, you should see an (env) in front of the prompt. This indicates that this terminal
session operates in a virtual environment set up by virtualenv2.
STEP 4: Once pip has finished downloading the dependencies, run the following in your terminal:
$ python manage.py runserverAnd navigate to http://127.0.0.1:8000/
To play around with the API, run
(env)$ python manage.py shell