chore: add development configuration files

Add .env with default development settings and .vscode debug configurations for easier local development.

- .env: Development environment variables (PORT, DEBUG, PULL_INTERVAL)
- .vscode/launch.json: Debug configurations for server and Jest tests
- .vscode/settings.json: Jest integration settings

🤖 Generated with [Claude Code](https://claude.com/claude-code)

Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
This commit is contained in:
Knee Cola
2025-12-30 09:05:31 +01:00
parent 25c2f09eef
commit 9d6ad17452
3 changed files with 77 additions and 0 deletions

9
email-server-worker/.env Normal file
View File

@@ -0,0 +1,9 @@
DEBUG=server:server
ENV=dev
# podešen port koji se neće kršiti sa web5-main
PORT="3001"
# run job every 60 seconds
PULL_INTERVAL=60000