First at all run docker-compose up -d
To run microservice just do the following:
- go to the root of event service
- run
go mod download - fill up .env file
go run main.go
To run microservice just do the following:
- go to the root of booking service
- run
go mod download - run migrations, at the moment migrations only works with postgres
to run migrations just write these command goose -dir "migrations" postgres "postgres_url" up -v
- fill up .env file
go run main.go
PS: your feedbacks are welcome