Installation ============ The Project was developed using Netbeans, the source folder of the project is "*gse-12-1/3 Component/RunAndDineWebApp*". Things you should change ------------------------ - web.xml - Location: "*gse-12-1/3 Component/RunAndDineWebApp/src/main/webapp/WEB-INF/web.xml*" - RunAndDineApplication.java - Location: "*gse-12-1/3 Component/RunAndDineWebApp/src/main/java/gse2012/group1/RunAndDineApplication.java*" - MailService.java - If you want to use a mail server other than "*smtp.uni-kl.de*" you have to modify "*gse-12-1/3 Component/RunAndDineWebApp/src/main/java/gse2012/group1/mail/MailService.java*" - jetty-realm.properties: - This is where we stored the passwords for the organizer realm. Since it depends on the webserver you might have to create another file for your webserver. - Location: "*gse-12-1/3 Component/RunAndDineWebApp/src/test/resources/jetty-realm.properties*" --- web.xml: -------- - database: - db_host (Hostname of the database) - db_database (name of the database) - db_username (username that has access to the database) - db_password - mail: - mail_address (with which address do you want to send mails) - mail_pw (password for the mail account) - mail_user (username if you have to authorize) - mail_name (name for the "from:"-field) RunAndDineApplication.java: ----------------------- - public static String DOMAIN - should be set to the root of the webserver, e.g.: "*http://www.aegee-kl.de/runanddine*", it is used for the RegistrationValidation links (gse2012.group1.registrationvalidation.TemporaryMail.createValidationLink(String token)) - public static String GLPK_PATH - path to glpk (GNU Linear Programming Kit), e.g. "*/opt/local/bin/glpsol*" - public static String GOOGLE_KEY - a key for the GoogleMaps-API jetty-realm.properties: ----------------------- - organizer: password, username database: --------- To use our project you have to create a MySQL database. When this is done you have to import the schema for the database. It is dumped in: "*gse-12-1/3 Component/SQL/gsep12.sql*".