FireScrum 1.0 Beta 1 Release Notes
- Overview
FireScrum 1.0 Beta 1 delivers the first public beta release package.
- Installation Prerequisites
Before installing FireScrum, make sure the following products,
with the specified versions, are installed on your system:
* Java 6 Development Kit (JDK) -> http://java.sun.com/javase/downloads/index.jsp
* Tomcat 6.x -> http://tomcat.apache.org/download-60.cgi
* Red5 Server 0.7.0 -> http://osflash.org/red5/070final
* PostgreSQL 8.x -> http://www.postgresql.org/download/
After installing the JDK, set or modify the following environment variables:
* JAVA_HOME -- set this environment variable
to point at the root directory of the JDK installation.
* PATH -- make sure that your PATH includes:
%JAVA_HOME%\bin (Windows)
$JAVA_HOME/bin (UNIX)
- Installing
3.1 Create target database (Ex. firescrum) in PostgreSQL
3.2 Copy firescrum.war to Tomcat webapps folder
3.3 Start Tomcat
3.4 Edit webapps\firescrum\WEB-INF\applicationContext.xml file to configure database connection in following section and save.
<bean id="dataSource" class="org.springframework.jdbc.datasource.DriverManagerDataSource">
<property name="driverClassName" value="org.postgresql.Driver" />
<property name="url" value="jdbc:postgresql://127.0.0.1/firescrum" />
<property name="username" value="postgres" />
<property name="password" value="postgres" />
</bean>
3.5 Restart Tomcat, tables and data will be created in the database.
3.6 Edit webapps\firescrum\WEB-INF\applicationContext.xml and remove following line and save.
<prop key="hibernate.hbm2ddl.auto">create</prop>
3.7 Copy firescrumServer folder to Red5 webapp folder.
3.8 Start Red5.
3.9 Type http://localhost:8080/firescrum to open the project main page on your browser.
3.10 Type “admin” user name and “admin” password to login.
3.11 Enjoy!
- Reporting Problems and Feature Requests
If you have any problems or want to send feedback of any kind, please e-mail the
to info@firescrum.com. You can also file issues in SF Tracker at:
http://sourceforge.net/tracker/?group_id=206024