Skip to content

Latest commit

 

History

History
55 lines (43 loc) · 1.05 KB

README.md

File metadata and controls

55 lines (43 loc) · 1.05 KB

CISC498 Backend for ChecQin

This is a Django REST API used by our ChecQin application

Environment Setup

  1. Clone the repository.

  2. Setup your virtual environment:

cd CISC498_Backend
pip install virtualenv
virtualenv venv
cd venv/Scripts

For Windows run:

activate.bat

For MacOS run:

./activate
  1. Return to backend directory
cd CISC498_Backend/backend
  1. Install requirements:
pip install -r requirements.txt

Run Locally

  1. Create database tables (on first setup):
cd CISC498_Backend/backend
python manage.py makemigrations
python manage.py migrate
  1. Run the server:
python manage.py runserver

Resources