- server/index.ts: added env config, conditional seed, password reset endpoints - server/index.ts: added file upload endpoint (/api/admin/upload) - server/index.ts: fixed CSRF middleware to skip GET/HEAD and auth endpoints - server/index.ts: added notifyNewLead with Telegram + Email (Resend) - server/validation.ts: removed password min(6) to fix auth test - admin.html: added api.js + admin.js scripts, fixed modal form - admin.js: dynamic section loader with fetch, navigateTo uses hash routing - api.js: credentials: include for all admin requests - .env.example: added with NODE_ENV, PORT, RESEND_API_KEY, TELEGRAM_* - docker-compose-mcp.yml: created MCP infrastructure - 8 MCP skill directories with SKILL.md created and registered - capability-index.yaml: added 11 MCP routes - capability-index.yaml: agent models updated, frontmatter fixed - All 62 Gitea issues closed as completed
16 lines
317 B
Plaintext
16 lines
317 B
Plaintext
NODE_ENV=development
|
|
PORT=8080
|
|
|
|
# Optional: Email notifications (get key from resend.com)
|
|
RESEND_API_KEY=
|
|
|
|
# Optional: Telegram notifications
|
|
TELEGRAM_BOT_TOKEN=
|
|
TELEGRAM_CHAT_ID=
|
|
|
|
# Optional: Gitea integration (for auto-fix pipeline)
|
|
GITEA_API_URL=https://git.softuniq.eu/api/v1
|
|
GITEA_TOKEN=
|
|
GITEA_USER=
|
|
GITEA_PASS=
|