Worblehat is a training application for the Scrum for Developers training held by codecentric AG, as well as for the Professional Scrum Developer training when given by codecentric.
In a series of livestreams, Bene and Andreas will implement the complete Backlog that is usually used during the training.
You can vote on the issues in order to influence the order of the Product Backlog. Please react with a "Thumbs Up" to the issue that You are interested in to see.
A PostgreSQL data base can be started locally using docker-compose:
docker-compose up
The docker compose setup includes Adminer for adminstrating the data base. Once the data base is started point your broser to http://localhost:8081 and log into the data base:
Setting | Value |
---|---|
Data base system | PostgreSQL |
Server | db |
User | postgres |
Password | worblehat-pw |
Data base | postgres |
You can use the maven wrapper to compile and execute the application
- Compile everything:
./mvnw clean install
- Run the application: `./mvnw -pl worblehat-web spring-boot:run
- Run the acceptancetests:
./mvnw -Pinclude-acceptancetests -pl worblehat-acceptancetests test