Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

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

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 mysql

2) ```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
***