You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Create a basic HTTP server that returns the current date and time. Implement this server using multiple web frameworks, add tests, and containerize the application using Docker and Docker Compose.
Requirements:
Server Functionality:
Endpoint: GET /datetime
Response: Current date and time
Implementations:
Implement the server using:
Standard library (net/http)
Gin
Testing:
Use Go's testing package and a HTTP testing library (e.g., httptest)
Docker:
Create a Dockerfile for each framework implementation
Ensure each Docker image is optimized for size (Multistage builds)
Docker Compose:
Create a docker-compose.yml file that runs all framework versions
Configure each service to run on a different port
Documentation:
Provide a README with setup and running instructions
Makefile driven: You should use make and a Makefile to drive the steps of
Building the binaries
Formatting
Linting
Building the images
Launching the containers
Optional Enhancements:
Implement graceful shutdown for each server
Acceptance Criteria:
All implementations pass the same test suite
Docker images build and run successfully
Docker Compose file correctly orchestrates all services
README provides clear instructions for running and testing the project
The text was updated successfully, but these errors were encountered:
Create a basic HTTP server that returns the current date and time. Implement this server using multiple web frameworks, add tests, and containerize the application using Docker and Docker Compose.
Requirements:
Server Functionality:
Implementations:
Testing:
Docker:
Docker Compose:
Documentation:
Makefile driven: You should use make and a Makefile to drive the steps of
Optional Enhancements:
Acceptance Criteria:
The text was updated successfully, but these errors were encountered: