If you can, use the dedicated App instead of updating the config.groovy file manually.
This documentation only includes core iceScrum settings. Apps can also have their own panel in the Settings window, in which case the documentation of the App explains how to configure it. Refer to the Apps documentation for more information.
iceScrum config must follow the Groovy format:
// Inline comment /* Block comment */ key = value // For booleans and numbers values key = "string value" // For strings values
All paths in your config.groovy must use ‘/’ (forward slash).
Here are the available application settings with their default value, given in the Groovy format (.groovy):
icescrum.project.import.enable = true icescrum.project.export.enable = true icescrum.project.creation.enable = true icescrum.project.private.enable = true icescrum.project.private.default = false
icescrum.gravatar.enable = false icescrum.registration.enable = true icescrum.invitation.enable = false icescrum.login.retrieve.enable = true icescrum.sessionTimeoutSeconds = 1800
icescrum.alerts.enable = true icescrum.alerts.errors.to = "dev@icescrum.org" icescrum.alerts.subject_prefix = "[icescrum]" icescrum.alerts.default.from = "webmaster@icescrum.org"
icescrum.serverURL = "http://localhost:8080/icescrum"
icescrum.debug.enable = false icescrum.securitydebug.enable = false
icescrum.baseDir = "<yourHome>/icescrum" /* Use a custom directory where Tomcat has write rights (not webapps!!). Path must use '/' (forward slash) */
icescrum.cors.enable = true /* CORS is enabled by default However, it's enabled only for projects where web services are enabled */ icescrum.cors.allow.origin.regex = "*" /* Use double backslash for escaping e.g. (http://|.+.)mydomain.com */
icescrum.check.enable = true icescrum.reportUsage.enable = true icescrum.feedback.enable = true
grails.mail.host = "smtp.gmail.com" grails.mail.port = 465 grails.mail.username = "username@gmail.com" grails.mail.password = "mypassword"
An additional email setting needs to be defined if you use TLS, SSL or anonymous authentication. Usually only one of them is required. To combine them, define the property only once and add the entries between the square brackets, separated by a comma.
grails.mail.props = ["mail.smtp.socketFactory.class":"javax.net.ssl.SSLSocketFactory"]
grails.mail.props = ["mail.smtp.starttls.enable":"true"]
grails.mail.props = ["mail.smtp.auth":"false"]
If you have any issue when configuring iceScrum, the first thing to check is that your config file is used. The one that is used is mentioned in the tomcat standard output when starting iceScrum.
If it is used but does not work, it may be not well formatted so check again the config format.
Then, you can try changing a trivial setting (like disabling registration) and see if it works. If so then it proves that your configuration is taken into account and that your specific setting may be wrong.
You can also try trivial values for your settings (e.g. Gmail for emails) to see if the problem comes from your values.
Finally, if you try connecting to an external service then try the settings in another client (e.g. in the command line) to check if they are correct.
H2 is the default DB in iceScrum. It is bundled so it is possible to try iceScrum without installing a DBMS. The DB is stored as a script file in your file system.
Your database structure and data is stored as SQL statements in a file called prodDb.h2.db located in the directory where you started iceScrum from. To backup your DB, just keep a copy of prodDb files.
The default username is sa and the password is empty.
dataSource.dialect = "org.hibernate.dialect.MySQL5InnoDBDialect" dataSource.driverClassName = "com.mysql.jdbc.Driver" dataSource.url = "jdbc:mysql://localhost:3306/icescrum?useUnicode=true&characterEncoding=utf8" dataSource.username = "root" dataSource.password = "myDbPass"
dataSource.dialect = "com.kagilum.hibernate.OracleCustomDialect" dataSource.driverClassName = "oracle.jdbc.driver.OracleDriver" dataSource.url = "jdbc:oracle:thin:@localhost:1521:XE" dataSource.username = "system" dataSource.password = "myDbPass"
With PostgreSQL, be careful, you have to use the “public” schema otherwise iceScrum won’t restart
dataSource.driverClassName = "org.postgresql.Driver" dataSource.url = "jdbc:postgresql://localhost:5432/icescrum" dataSource.username = "postgres" dataSource.password = "myDbPass"
dataSource.dialect = "org.hibernate.dialect.SQLServer2012Dialect" // For 2012 and above dataSource.driverClassName = "com.microsoft.sqlserver.jdbc.SQLServerDriver" dataSource.url = "jdbc:sqlserver://localhost:1433;databaseName=icescrum" dataSource.username = "sa" dataSource.password = "myDbPass"