# development
# * Docker se desplegara en el puerto 80 (Si este puerto esta ocupado en la maquina local se debe cambiar en el archivo docker-compose.dev.yml)
docker-compose -f docker-compose.dev.yaml up --build -d
# deploy from Docker hub
docker-compose -f docker-compose.prod.yaml up --build -d
# * http://localhost:80/api/docs
cd api-gateway
yarn
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
cd microservice-users
yarn
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
cd microservice-passengers
yarn
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod
cd microservice-flights
yarn
# development
$ yarn start
# watch mode
$ yarn start:dev
# production mode
$ yarn start:prod