Skip to content

Latest commit

 

History

History
55 lines (34 loc) · 897 Bytes

File metadata and controls

55 lines (34 loc) · 897 Bytes

Software Engineering Studio 2A - Team 10

UTS HELPS Booking System

Maintainers:

Nathan Luu

Nic Moiso

Richard Tong

Aditya Verma

The Duc Vu

Alex Bell

Dependencies

You'll need to install python3, pip, virtualenv, django-session-timeout and django.

Virtual Environment

We avoid system problems and dependency issues by running our project in virtual environments. It's recommended to have the environment activated when testing.

On Mac / Linux:

# Activating
source env/linux/bin/activate
# when activated, you'll see (env) before your command line

# Deactivating
deactivate

On Windows:

# Activating
env\Windows\Scripts\activate
# when activated, you'll see (env) before your command line

# Deactivating
env\Windows\Scripts\deactivate

Running test server:

cd app/helps_booking_system/
python3 manage.py runserver