An example CRUD service backed by Flask and PostgreSQL database.
Should be started via Docker Compose with the .env file having all the necessary environmental variables, as stated in the .env_example file.
- GET
/health: Liveness probe - GET
/ready: Readiness probe
- GET
/users: Get all users - POST
/users: Create a new user - GET
/users/<user_id>: Get a particular user by ID - PUT
/users/<user_id>: Update a particular user by ID - DELETE
/users/<user_id>: Delete a particular user by ID