Backend for online bike shop build with Spring Boot
Explore the docs »
Table of Contents
This is my first more extensive project build from scratch by myself. Main goal of this repo was to ground my knowledge about Spring Boot, SQL and security. For now project is done with basic functionality and won't be developed for some time. You will find GUI and demo upon this link .
This Spring Boot application is built using Maven. You can build a jar file and run it from the command line (it should work just as well with Java 8, 11).
git clone https://github.com/qloqloq/bike-shop-spring.git
cd bike-shop-spring
./mvnw package
java -jar target/*.jar
Or you can run it from Maven directly using the Spring Boot Maven plugin
./mvnw spring-boot:run
Then go to http://localhost:8080/
- implement Facade pattern for placing orders
- count user daily login
- total spent money by user
- add product to favorite
Contributions are what make the open source community such an amazing place to learn, inspire, and create. Any contributions you make are greatly appreciated.
If you have a suggestion that would make this better, please fork the repo and create a pull request. You can also simply open an issue with the tag "enhancement". Don't forget to give the project a star! Thanks again!
- Fork the Project
- Create your Feature Branch (
git checkout -b feature/AmazingFeature
) - Commit your Changes (
git commit -m 'Add some AmazingFeature'
) - Push to the Branch (
git push origin feature/AmazingFeature
) - Open a Pull Request
List resources I find helpful and would like to give credit to.