From 352969deca35ae88adbe7f605b83bab47a159c7e Mon Sep 17 00:00:00 2001 From: saidsurucu Date: Sun, 29 Jun 2025 13:27:42 +0300 Subject: [PATCH] add saas depen --- .env.example | 10 ++++++++++ .gitignore | 1 + pyproject.toml | 4 ++++ 3 files changed, 15 insertions(+) diff --git a/.env.example b/.env.example index afa6551..ba05429 100644 --- a/.env.example +++ b/.env.example @@ -42,6 +42,16 @@ EMSAL_TIMEOUT=60 # Sentry DSN for error tracking # SENTRY_DSN=https://your-sentry-dsn@sentry.io/project-id +# Clerk Configuration +CLERK_SECRET_KEY=sk_test_YourClerkSecretKey + +# Stripe Configuration +STRIPE_SECRET_KEY=sk_test_YourStripeSecretKey +STRIPE_WEBHOOK_SECRET=whsec_YourStripeWebhookSecret + +# Application Configuration +APP_URL=http://localhost:8000 + # OpenTelemetry Configuration (optional) # OTEL_EXPORTER_OTLP_ENDPOINT=http://localhost:4317 # OTEL_SERVICE_NAME=yargi-mcp-server \ No newline at end of file diff --git a/.gitignore b/.gitignore index 664cebb..3a7c116 100644 --- a/.gitignore +++ b/.gitignore @@ -185,3 +185,4 @@ Dockerfile fly.toml .github/workflows/fly-deploy.yml Dockerfile +GEMINI.md diff --git a/pyproject.toml b/pyproject.toml index dc514df..b64608d 100644 --- a/pyproject.toml +++ b/pyproject.toml @@ -29,6 +29,10 @@ production = [ "gunicorn>=22.0.0", "uvicorn[standard]>=0.30.0", ] +saas = [ + "clerk-python-sdk>=1.0.0a4", + "stripe>=9.1.0", +] [project.scripts] yargi-mcp = "mcp_server_main:main"