ongraphpythondev / userLogin

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

User Authentication

Prerequisites:

You will need the following programmes properly installed on your computer.

  • Python 3.5+
  • Virtual Environment

To install virtual environment on your system use:

pip install virtualenv

or

pip3 install virtualenv #if using linux(for python 3 and above)

Installation and Running :

git clone https://github.com/ongraphpythondev/userLogin

cd userLogin

virtualenv venv 
      or 
virtualenv venv -p python3 #if using linux(for python 3 and above)

venv\Scripts\activate # for windows
      or
source venv/bin/activate # for linux

# install required packages for the project to run
pip install -r requirements.txt 

python manage.py runserver

About


Languages

Language:Python 84.9%Language:HTML 15.1%