A simple class scheduler written in Go.
Firstly, create a .env file with all the variables needed as follows:
DATABASE_HOST=classes-scheduler-db
DATABASE_PORT=5432
DATABASE_USER=[CHOOSE_A_USER]
DATABASE_PASS=[CHOOSE_A_PASSWORD]
DATABASE_NAME=[CHOOSE_A_DATABASE_NAME]
Run docker compose to start the environment:
$ docker compose up -d
The environment will startup with three containers:
- classes-scheduler: the application
- classes-scheduler-db: a PostgreSQL database
- adminer: a tiny database admin interface
With all the containers running, run:
go test ./e2e
You can manually test the application using cURL too:
$ curl -X POST http://localhost:8080/api/classes \
-H 'Content-Type: application/json' \
-d '{"name":"Class Test","start_date":"2021-11-10", "end_date":"2021-11-20", "capacity": 50}'
curl -X POST http://localhost:8080/api/bookings \
-H 'Content-Type: application/json' \
-d '{"name":"Mateus","date":"2021-11-10"}'