Skip to content

Latest commit

 

History

History
38 lines (18 loc) · 752 Bytes

File metadata and controls

38 lines (18 loc) · 752 Bytes

Environment settings. Development of basic REST API

This is a simple project with no database hosted on hiroku.
  • Learned how to set up an environment typical of java spring boot backend development

  • Developed a basic REST API for a web application deployment settings

  • Tested the REST API using postman and swagger

All endpoints:

/home/v1/categories

/home/v1/categories/{categoryId}

/home/v1/records

/home/v1/records/category/{categoryId}

/home/v1/records/user/{userId}

/home/v1/records/{recordId}

/home/v1/users

/home/v1/users/{userId}

To run project locally:

mvn package

java -jar target/demo-0.0.1-SNAPSHOT.jar