Skip to content

uofa-cmput404/authentication-lab

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

7 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

authentication-lab

University of Alberta, CMPUT 404 Lab 9 starter repository. Use the different HTTP authentication schemes provided in Django Rest Framework.

Getting Started

  1. Clone this repository.
    • git clone https://github.com/uofa-cmput404/authentication-lab.git
  2. Change directory into this repository.
    • cd authentication-lab
  3. Initialize a Python3 virtual environment
    • virtualenv venv --python=python3
  4. Activate the virtual environment and install the application dependencies
    source venv/bin/activate
    pip install -r requirements.txt
  5. Run the migrations and create a superuser.
    ./manage.py migrate
    ./manage.py createsuperuser
  6. Start the Django application. ./manage.py runserver