Watchlist – is a very simple RESTful web-application. It runs with Spring Boot on the back-end and React on the front-end.
If you want to try it out, read the installation guide below.
- Clone this repository
- Create mysql database 'watchlist' 1
- Check the corectness of username and password to your database in application.properties 2
- Open the folder where you cloned this repository in terminal
- Run
mvn spring-boot:run
command 3 - Go into /frontend folder and run
npm install && npm start
command 4 - Now you can go to http://localhost:3000 and see the result
[1] If you want to give it a different name, you must also make change in scr/main/resources/application.properties in spring.datasource.url
[2] File application.properties is located in scr/main/resources/
[3] This will work only if you have Apache Maven installed. If you don't, go here
[4] This will work only if you have node.js installed. If you don't, go here