Homestead is a web-application for managing on-campus student housing.
- Install phpwebsite using postgresql
- Clone this repo into the
phpwebsite/mod
into anhms
directory:git clone [email protected]:AppStateESS/homestead.git hms
- Install the HMS module from the phpwebsite control panel
- Copy
mod/hms/inc/hms_defines.php
andmod/hms/inc/SOAPDataOverride.php
tophpwebsite/inc/
- In the
phpwebsite/inc/hms_defines.php
file you just copied, change the following values totrue
:HMS_DEBUG
(causes uncaught exceptions to be echoed to the browser, instead of caught, logged, and emailed)SOAP_INFO_TEST_FLAG
(forces use of hard-coded student info inTestSOAP.php
)EMAIL_TEST_FLAG
(causes emails to be logged tophpwebsite/log/email.log
)
- Install Composer
- Install dependencies with Composer -- from inside the
hms
directory:./composer.phar install
- Install Node.js (includes npm) (Something like
sudo yum install npm
should work)BowerUse npm to install Bower:sudo npm install -g bower
Use Bower to install dependencies -- from inside thehms
directory:bower install
- Bower is deprecated. Use Yarn instead.
- Setup the Postgresql Fuzzy String Matching Extensions:
sudo yum install postgresql-contrib
- From the psql command line on the Homestead database:
create extension FUZZYSTRMATCH;