Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .github/workflows/backend-ci.yml
Original file line number Diff line number Diff line change
Expand Up @@ -47,6 +47,9 @@ jobs:
NODE_ENV: development
run: npm run spec:export

- name: Check for Prisma schema without migration
run: chmod +x app/backend/scripts/check-prisma-migration.sh && app/backend/scripts/check-prisma-migration.sh

- name: Check for OpenAPI spec drift
run: |
git diff --exit-code app/frontend/openapi.json || \
Expand Down
8 changes: 8 additions & 0 deletions app/backend/.env.example
Original file line number Diff line number Diff line change
Expand Up @@ -13,3 +13,11 @@ TWILIO_FROM_NUMBER=""
SENDGRID_API_KEY=""
EMAIL_FROM_ADDRESS="no-reply@chainforge.local"
EMAIL_FROM_NAME="ChainForge"

# Evidence Storage (S3/MinIO/GCS compatible)
EVIDENCE_STORAGE_BUCKET="chainforge-evidence"
EVIDENCE_STORAGE_REGION="us-east-1"
EVIDENCE_STORAGE_ACCESS_KEY_ID=""
EVIDENCE_STORAGE_SECRET_ACCESS_KEY=""
EVIDENCE_STORAGE_ENDPOINT="" # For MinIO or custom S3 endpoints
EVIDENCE_STORAGE_FORCE_PATH_STYLE="false"
Loading