Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/nikamelashvili/car-service-api
Car Service API (Swagger and Docker commands included). Spring Boot, MySQL
https://github.com/nikamelashvili/car-service-api
Last synced: about 1 month ago
JSON representation
Car Service API (Swagger and Docker commands included). Spring Boot, MySQL
- Host: GitHub
- URL: https://github.com/nikamelashvili/car-service-api
- Owner: NikaMelashvili
- Created: 2024-06-09T06:04:11.000Z (8 months ago)
- Default Branch: master
- Last Pushed: 2024-06-29T20:06:18.000Z (7 months ago)
- Last Synced: 2024-06-30T19:36:13.541Z (7 months ago)
- Language: Java
- Homepage:
- Size: 363 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Car Service API
***
## Swagger - http://localhost:8080/swagger-ui/index.html
## Swagger has 2 sections one for services and other for cars***
## Docker env setup
1) ```bash
docker pull mysql2) ```bash
docker run --name some-mysql -p 3307:3306 -e MYSQL_ROOT_PASSWORD=123 -d mysql:latest
3) ```bash
docker exec -it some-mysql mysql -uroot -p
sql is included in the java/sql directory
***