-
Notifications
You must be signed in to change notification settings - Fork 1
Deployment plan
Noel D'Souza edited this page Dec 3, 2013
·
1 revision
-
Ensure that python 2.7 is installed on the web server.
- Skip this step if python is already installed on the web server.
- See http://www.python.org/getit for installation instructions.
-
Ensure that pip is installed on the web server.
- Pip is a python package manager that will help install the requirements for healthyhome.
- See http://www.pip-installer.org for installation instructions.
-
Upload the healthyhome files to the server using one of the following steps:
- FTP
- Download an archive of the application from https://github.com/CSC301H-Fall2013/healthyhome/archive/master.zip.
- Upload the archive to server and unzip it.
- Git
- FTP
-
Install the packages required by healthyhome.
- SSH into the server.
- cd into the healthyhome directory.
- Run
pip install -r requirements.txt
to install the requirements.
-
Follow the Deploying Django instructions to setup healthyhome for the current server environment.
-
Deploy.