python3.7 -m virtualenv ~/python-venvs/hms-framework
source ~/python-venvs/hms-framework
python -m pip install -r requirements.txt
- Copy the requirements.txt into a new project.
- Create virtualenv
- Initialize virtualenv
- Install new django app, usually hotel name:
django-admin startproject hms_kerry_center_hotel
(note underscore in project name it is required by Django.) - Copy settings.py into new project
- Adapt settings.py to suit the new hotel, extend classes when necessary