Django is a web-framework written in Python and runs the backend for many of the internet's most popular websites. This is a multi-user type auth app, it is built ontop of Django 3.0.6.
This app features the following:
-- CreateUser Type A or B at signup
-- Login
-- Very basic profile dashboard
-- simple permission to restrict unauthenticate users and unauthorized access
- Django 3.0.6.
- Python3
- Boostrap 4.3.x (for front end)
- installing Python3
- installing Django 3.0
- installing Virtualenv
- installing requirements from requirements.txt. After activating vitualenv run:
(venv)path/to/app/src$ pip install -r requirements.txt
- make sure your virtualenv is ativated.
(venv)path/to/app/src$
- make sure you are in the same directory where manage.py is then run
(venv)path/to/app/src$ python manage.py runserver
- go to your web browser and enter 127.0.0.1:8000
Still alot to be done with the app, but you could clone the app, edit the code and use on your own app as you see fit.