Add new email-server-worker project implementing a self-scheduling background worker pattern with HTTP monitoring. Removed all business-specific code from copied source, creating a clean, reusable template. Key features: - Self-scheduling worker loop with configurable interval - Graceful shutdown support (Docker-compatible) - Prometheus metrics collection - Health check endpoints (/healthcheck, /metrics, /ping) - Example worker template for easy customization - Comprehensive architecture documentation in CLAUDE.md The worker is now ready for email server implementation with no external dependencies on Evolution/MSSQL/ElasticSearch. 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Sonnet 4.5 <noreply@anthropic.com>
14 lines
304 B
Bash
Executable File
14 lines
304 B
Bash
Executable File
#!/bin/bash
|
|
|
|
if [ "$1" == "" ] ; then
|
|
printf "\nNisi zadao verziju Docker image-a koji treba pokrenuti"
|
|
printf "\n\nSintaksa:\n\n run-image.sh 1.0.0\n\n"
|
|
exit 1
|
|
fi
|
|
|
|
IMAGE_TAG=pr-d-registry.ngit.hr/ngit/evo-open-table-sync-svc:$1
|
|
|
|
docker run -p 3000:3000 \
|
|
--env DEBUG=* \
|
|
$IMAGE_TAG
|