Complete Ghaymah cloud assessment

هذا الالتزام موجود في:
yassinelagamy
2026-07-26 19:45:13 +03:00
التزام 8bc563fa6b
27 ملفات معدلة مع 4152 إضافات و0 حذوفات

عرض الملف

@@ -0,0 +1,29 @@
# Python
__pycache__/
*.py[cod]
*.egg-info/
.venv/
venv/
env/
.pytest_cache/
.mypy_cache/
.ruff_cache/
# Tooling / editors
.git/
.gitignore
.github/
.vscode/
.idea/
*.swp
# OS
.DS_Store
Thumbs.db
# Project files that don't belong in the image
*.md
Dockerfile
.dockerignore
.env
*.log

عرض الملف

@@ -0,0 +1,33 @@
FROM python:3.12-slim
# curl is required by the HEALTHCHECK below; everything else stays out of the image.
RUN apt-get update \
&& apt-get install -y --no-install-recommends curl \
&& rm -rf /var/lib/apt/lists/*
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
PIP_NO_CACHE_DIR=1 \
PORT=8080
WORKDIR /app
# Dependencies first: this layer is cached and only rebuilt when
# requirements.txt changes, not on every code edit.
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Application code last — the layer that changes most often.
COPY main.py .
# Run as an unprivileged user.
RUN useradd --create-home --uid 10001 appuser \
&& chown -R appuser:appuser /app
USER appuser
EXPOSE 8080
HEALTHCHECK --interval=30s --timeout=5s --start-period=10s --retries=3 \
CMD curl -f http://localhost:8080/health || exit 1
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "8080"]

عرض الملف

@@ -0,0 +1,88 @@
"""Ghaymah demo API — liveness and request metrics with no external dependencies.
Endpoints:
GET / basic service info
GET /health liveness probe (process-only, no downstream checks)
GET /metrics in-memory request counter
"""
import os
import time
from datetime import datetime, timezone
from fastapi import FastAPI, Request
from fastapi.responses import JSONResponse
APP_NAME = os.getenv("APP_NAME", "ghaymah-api")
APP_VERSION = os.getenv("APP_VERSION", "1.0.0")
PORT = int(os.getenv("PORT", "8080"))
# Process start time drives both uptime and the /metrics started_at field.
STARTED_AT_MONOTONIC = time.monotonic()
STARTED_AT_ISO = datetime.now(timezone.utc).isoformat()
app = FastAPI(
title=APP_NAME,
version=APP_VERSION,
description="Minimal API deployed on the Ghaymah container platform.",
)
# In-memory counter. Deliberately per-process: it resets on restart, which is
# exactly what we want the dashboard to show after a redeploy or a crash-loop.
_requests_total = 0
def _now_iso() -> str:
return datetime.now(timezone.utc).isoformat()
def _uptime_s() -> float:
return round(time.monotonic() - STARTED_AT_MONOTONIC, 3)
@app.middleware("http")
async def count_requests(request: Request, call_next):
"""Increment the counter for every request, including failed ones."""
global _requests_total
_requests_total += 1
return await call_next(request)
@app.get("/")
async def root():
return {
"service": APP_NAME,
"version": APP_VERSION,
"message": "Ghaymah deployment demo API",
"endpoints": ["/", "/health", "/metrics", "/docs"],
"started_at": STARTED_AT_ISO,
"timestamp": _now_iso(),
}
@app.get("/health")
async def health():
"""Liveness only — no DB or network calls, so it never fails for a
downstream reason the orchestrator cannot fix by restarting us."""
return JSONResponse(
status_code=200,
content={
"status": "ok",
"uptime_s": _uptime_s(),
"timestamp": _now_iso(),
},
)
@app.get("/metrics")
async def metrics():
return {
"requests_total": _requests_total,
"started_at": STARTED_AT_ISO,
}
if __name__ == "__main__":
import uvicorn
uvicorn.run("main:app", host="0.0.0.0", port=PORT, log_level="info")

عرض الملف

@@ -0,0 +1,2 @@
fastapi==0.115.6
uvicorn[standard]==0.34.0