Code Migrated to andy-jarombek-research
Basic example API that uses Python & Go to read from a SQLite database and return a JSON response.
Python API
# Set your desired port
PORT=5001
# Start the API
cd python
PORT=$PORT docker-compose up# Query the API
curl localhost:$PORT/employeesGo API
# Set your desired port
PORT=5002
# Start the API
cd go
PORT=$PORT docker-compose up# Query the API
curl localhost:$PORT/employees