Simple Django application to login and register users.
- python 3 - https://w3path.com/install-python-3-on-ubuntu-mac-or-windows/
- pip or pip3 - https://www.activestate.com/resources/quick-reads/how-to-install-and-use-pip3/
Backend - Django with sqlite database UI - Django Template Language
- Open a terminal
- Create a virtual env - python3 -m venv {envname} . eg:python3 -m venv djangenv
- Activate virtual Environment - source djangenv/bin/activate
- pip3 install -r requirements.txt
- python manage.py makemigrations
- python manage.py migrate
- python manage.py runserver
- Microservice will be running at port 8000 by default
- Create SuperUser - python manage.py createsuperuser