From 94e0ddc85af161f7d3a2603ec18b48259c9327a8 Mon Sep 17 00:00:00 2001 From: Roger Feese <rfeese@unl.edu> Date: Fri, 7 Nov 2014 13:50:07 -0600 Subject: [PATCH] Put config keys in comment for clarity. --- docs/INSTALL.txt | 26 ++++++++++++++++++++------ 1 file changed, 20 insertions(+), 6 deletions(-) diff --git a/docs/INSTALL.txt b/docs/INSTALL.txt index 0968339b..50569acf 100644 --- a/docs/INSTALL.txt +++ b/docs/INSTALL.txt @@ -45,14 +45,28 @@ special privileges to create. cp application/configs/application.ini.sample application/configs/application.ini # Config parameters you might need to change: - resources.frontController.baseUrl - resources.db.params.* - unl.templates.options.version - unl.templates.options.templatedependentspath - ldap.* - bulletin.github.* + # resources.frontController.baseUrl + # resources.db.params.* + # unl.templates.options.version + # unl.templates.options.templatedependentspath + # ldap.* + # bulletin.github.* 7. Copy default .htaccess and make changes as necessary. cp .htaccess.sample .htaccess + +8. Set up Apache and your virtual host (TODO). + +9. Place a copy of the bulletin repository in the application folder. In order +to get all of the embeded notes, this currently requires a copy of the +repository from production. + +10. Set up the local bulletin repository remotes. + + cd bulletin.git + # For production + git remote rm origin + git remote add origin https://unl-creq:<password>@github.com/unl-creq/UNL_UndergraduateBulletin.git + git remote add upstream https://github.com/unl/UNL_UndergraduateBulletin.git -- GitLab