File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -33,4 +33,6 @@ _Local Working Files/*
3333* .suo
3434web.config
3535vwd.webinfo
36- WebEssentials-Settings.json
36+ WebEssentials-Settings.json
37+ /vendor /
38+ composer.lock
Original file line number Diff line number Diff line change 1+ {
2+ "name" : " computersciencehouse/schedulemaker" ,
3+ "description" : " A course database lookup tool and schedule building web application for use at Rochester Institute of Technology." ,
4+ "type" : " project" ,
5+ "authors" : [
6+ {
7+ "name" : " Devin Matte" ,
8+ "email" : " matted@csh.rit.edu"
9+ },
10+ {
11+ "name" : " Ben Grawi" ,
12+ "email" : " bgrawi@csh.rit.edu"
13+ },
14+ {
15+ "name" : " Ben Russell" ,
16+ "email" : " benrr101@csh.rit.edu"
17+ }
18+ ],
19+ "require" : {
20+ "php" : " >=7.0" ,
21+ "aws/aws-sdk-php" : " ^3.69"
22+ }
23+ }
Original file line number Diff line number Diff line change 2121$ HTTPROOTADDRESS = $ get_env (getenv ("HTTPROOTADDRESS " ), 'http://schedule.csh.rit.edu/ ' );
2222$ SERVER_TYPE = $ get_env (getenv ("SERVER_TYPE " ), 'development ' );
2323
24+ ////////////////////////////////////////////////////////////////////////////
25+ // S3 CONFIG
26+ $ S3_SERVER = $ get_env (getenv ("S3_SERVER " ), 's3.csh.rit.edu ' );
27+ $ S3_KEY = $ get_env (getenv ("S3_KEY " ), '' );
28+ $ S3_SECRET = $ get_env (getenv ("S3_SECRET " ), '' );
29+
2430////////////////////////////////////////////////////////////////////////////
2531//// APP VERSIONS
2632$ APP_CONFIG = json_decode (file_get_contents ((empty ($ APP_ROOT )?"../ " :$ APP_ROOT )."package.json " ), true );
Original file line number Diff line number Diff line change @@ -22,6 +22,12 @@ $GOOGLEANALYTICS = 'google_analytics_site_id';
2222$HTTPROOTADDRESS = 'http://path.to.your/schedule/';
2323$SERVER_TYPE = '(development|production)'
2424
25+ ////////////////////////////////////////////////////////////////////////////
26+ // S3 CONFIG
27+ $S3_SERVER = 's3.csh.rit.edu';
28+ $S3_KEY = '';
29+ $S3_SECRET = '';
30+
2531////////////////////////////////////////////////////////////////////////////
2632// CALCULATIONS
2733
You can’t perform that action at this time.
0 commit comments