Swift Meeting Management System Code
Status: Pre-Alpha
Brought to you by:
allenny
File | Date | Author | Commit |
---|---|---|---|
grails-app | 2011-08-15 | allenny | [r94] |
lib | 2011-06-17 | allenny | [r91] |
scripts | 2008-11-07 | allenny | [r3] |
src | 2011-07-18 | allenny | [r93] |
test | 2009-03-02 | allenny | [r63] |
web-app | 2011-08-15 | allenny | [r94] |
application.properties | 2011-08-15 | allenny | [r94] |
build.xml | 2010-04-19 | allenny | [r77] |
ivy.xml | 2011-06-07 | allenny | [r85] |
ivysettings.xml | 2011-06-07 | allenny | [r85] |
readme.txt | 2009-07-06 | allenny | [r70] |
run.bat | 2009-01-23 | allenny | [r50] |
run.sh | 2009-01-23 | allenny | [r50] |
smms.launch | 2010-04-15 | allenny | [r76] Upgrade Grails to 1.2.2 |
smms.tmproj | 2009-07-12 | allenny | [r73] |
Installation Guide * Install MySQL database 5.0.x above, or any other database product(not verified, and you must put the JDBC driver for your database into the lib directory WEB-INF\lib ) http://www.mysql.com/ * Install JDK 6, set JAVA_HOME enivronment viariable to the installation directory. http://java.sun.com/javase/downloads/index.jsp * Install web application server, like GlassFish or Jetty or any product that supports Servlet 2.4. https://glassfish.dev.java.net/ http://www.mortbay.org/jetty/ * Create new database schema in MySQL with name 'smms', * Deploy smms.war to your web application server, read the server document for reference. * Open datasource config file at "[Installation Directory]\WEB-INF\classes\smms-config.properties", replace username and password with your db username/password. find dataSource.url = "jdbc:mysql://localhost/smms", replace the "localhost" with your database host address. * Start web app server without any exception, and visit http://yourhost.com:port/ with your browser(Firefox 3 is recommended and will be full tested). * Before you login to SMMS, you must install some system default data, visit http://yourhost.com:port/install/index, click the button "create system data", then you can login system by username/password = admin/admin * You can install data for demo if you want to evaluate functionality quickly. just click the button "create demo data". * After all data installed, you will not allowed to install again. * Login system as administrator by "admin/123456" * To use and administrate system, you may do following things: Click "Administration", set your organization name, it will display at top. Click "Administration" -> "Meeting Rooms" -> "New" to add your meeting rooms. Click "User Management" -> "Roles" -> "New Role" to add new roles, don't forget to assign privileges to created roles Click "User Management" -> "New User" to add new users with roles assigned. * After all, you will have system run if lucky! ^_^