Compare commits

...

1 Commits

Author SHA1 Message Date
diablorain 9f28ed18ac security: stop tracking .env.dev/.env.development (contained SECRET_KEY + DATABASE_URL); gitignore them. ROTATE the exposed SECRET_KEY + DB creds.
CI/CD Pipeline / Backend Tests & AI Verification (push) Has been cancelled
CI/CD Pipeline / Frontend Tests & Build (push) Has been cancelled
CI/CD Pipeline / Security Scanning (javascript) (push) Has been cancelled
CI/CD Pipeline / Security Scanning (python) (push) Has been cancelled
Enhanced Security Scans / CodeQL Analysis (javascript) (push) Has been cancelled
Enhanced Security Scans / CodeQL Analysis (python) (push) Has been cancelled
Enhanced Security Scans / Dependency Security Scan (push) Has been cancelled
Enhanced Security Scans / Python Security Scan (Bandit) (push) Has been cancelled
Enhanced Security Scans / Semgrep Security Scan (push) Has been cancelled
Enhanced Security Scans / Frontend Security Scan (ESLint) (push) Has been cancelled
Enhanced Security Scans / Docker Security Scan (push) Has been cancelled
Enhanced Security Scans / Secrets Detection (push) Has been cancelled
Migration Drift Check / drift (push) Has been cancelled
DB Migrations / alembic-sqlite (3.10) (push) Has been cancelled
DB Migrations / alembic-sqlite (3.11) (push) Has been cancelled
DB Migrations / alembic-sqlite (3.12) (push) Has been cancelled
DB Migrations / alembic-postgres (3.10) (push) Has been cancelled
DB Migrations / alembic-postgres (3.11) (push) Has been cancelled
DB Migrations / alembic-postgres (3.12) (push) Has been cancelled
DB Migrations / drift-check (push) Has been cancelled
Generate SBOM / Generate Software Bill of Materials (push) Has been cancelled
Security Scans / CodeQL Analysis (javascript) (push) Has been cancelled
Security Scans / CodeQL Analysis (python) (push) Has been cancelled
Security Scans / Snyk Security Scan (push) Has been cancelled
Security Scans / Dependency Vulnerability Scan (push) Has been cancelled
Security Scans / Semgrep SAST (push) Has been cancelled
Security Scans / Bandit Python Security Scan (push) Has been cancelled
Security Scans / ESLint Security Scan (push) Has been cancelled
Security Scans / Docker Security Scan (push) Has been cancelled
Security Scans / Secrets Detection (push) Has been cancelled
CI/CD Pipeline / Deploy Preview (push) Has been cancelled
CI/CD Pipeline / Deploy to Production (push) Has been cancelled
Enhanced Security Scans / Security Summary (push) Has been cancelled
DB Migrations / smoke-api (push) Has been cancelled
DB Migrations / smoke-api-postgres (push) Has been cancelled
Security Scans / Security Summary (push) Has been cancelled
2026-07-20 18:54:44 -06:00
3 changed files with 5 additions and 22 deletions
+5
View File
@@ -166,3 +166,8 @@ pip-log.txt
.DS_Store .DS_Store
legacy-ahk/ legacy-ahk/
legacy-ahk/ legacy-ahk/
modern/backend/.env.dev
modern/frontend/.env.development
*.env.dev
*.env.development
.env.dev
-21
View File
@@ -1,21 +0,0 @@
# Development Environment Configuration
DEBUG=true
ENVIRONMENT=development
DATABASE_URL=sqlite:///modern_dev.db
SECRET_KEY=dev-secret-key-change-in-production
AI_MODELS_PATH=./ai_models
LOG_LEVEL=DEBUG
# API Configuration
API_HOST=127.0.0.1
API_PORT=8000
CORS_ORIGINS=["http://localhost:3000", "http://127.0.0.1:3000"]
# AI Configuration
HUGGINGFACE_CACHE_DIR=./ai_models
MAX_MODEL_MEMORY_MB=2048
ENABLE_AI_CACHING=true
# Performance Monitoring
ENABLE_METRICS=true
METRICS_EXPORT_INTERVAL=300
-1
View File
@@ -1 +0,0 @@
VITE_API_BASE=/api