Flight App Mindswap is a Rest API produced by Luis Faria, Tiago Correia, Martim Margarido, Tomás Fonseca, Vanilson Muhongo. This app was developed during the Mindswap Bootcamp as the first backend project.
You will be able to register your account and log in. Once logged in (as user) you'll be able to search, book and cancel flights. If given admin previleges, you'll be able to create and delete flights and also get the passenger list from a given flight.
It's expected you'll receive confirmation emails of your interactions with the app.
https://mindswap-flight-app.herokuapp.com/
https://mindswap-flight-app.herokuapp.com/swagger-ui/index.html
-Heroku-app.postman_collection.json
-LocalHost.postman_collection.json
docker run --name mymariadb -e MARIADB_ROOT_PASSWORD=mypass -p 3306:3306 -d mariadb:latest
docker build -t users_service .
docker run -it --rm --link mymariadb -p 8080:8080 users_service
docker-compose up