GET /->{"msg":"BCFM"}GET /health->{"status":"healthy"}POST /post-> Body'den gelenkeyvevaluebody'ye geri döndürülür.
python3 -m venv .venv
source .venv/bin/activate
pip install -r requirements.txt
python app.pyUygulama varsayılan olarak 8093 portunda calışır.
docker compose up -d --buildcurl http://localhost:8093/
curl http://localhost:8093/health
curl -X POST http://localhost:8093/post \
-H "Content-Type: application/json" \
-d '{"key":"a","value":"b"}'