Sringboot application to act as backend server for the AutoMate app.
See the Guide on how to contribute here for instructions on how to fork and set up your repository. Refer here for code of conduct.
DWoC is a winter long program organised by Delta Force, the coding club of NIT Trichy. With an aim to support and improve the culture of open source software around us, this serves as a platform for young student developers (or even starters) to hone their technical skills by working on projects of their interests. We hope this encourages collabrative experiences and allows students from all backgrounds to contribute to quality technical projects from diverse fields. For more information, visit DWoC
- Fork and clone the repository:
git clone https://github.com/<YOUR-USERNAME>/AutoMate
- Make a file named
application.properties
insrc/main/resources
folder and copy the contents ofapplication.properties.example
. Set the database connection details inapplication.properties
, as required - Run
src/main/resources/schema.sql
in your local mysql shell to set up the database:source <path_to_file>/schema.sql
- Run
src/main/java/com/example/automate/AutoMateApplication.java
. - The application will be running at
http://localhost:<port>/
. Port is currently set to 8090 inapplication.yml
file.
The routes can be tested with swagger athttp://localhost:<port>/swagger-ui/
.