Open source task management tool built with Vue.js 2, Spring Boot 2, and MySQL 5.7+
Create src/main/resources/application-dev.properties with the following settings to override the settings in application.properties.
spring.datasource.url=jdbc:mysql://localhost:3306/task_agile?useSSL=false
spring.datasource.username=<your username>
spring.datasource.password=<your password>- Use
mvn installto build both the front-end and the back-end - Use
mvn testto run the tests of the back-end and the front-end - Use
mvn spring-boot:runto start the back-end - Use
npm run serveinside thefront-enddirectory to start the front-end - Use
java -jar target/app-0.0.1-SNAPSHOT.jarto start the bundled application