feat: add Go microservice, Dockerfile, docker-compose, and API submission endpoint

This commit is contained in:
2026-08-12 17:20:03 +02:00
parent ad02939b88
commit 0ee82eb673
24 changed files with 316 additions and 6 deletions
+13
View File
@@ -0,0 +1,13 @@
# Server Port & Configuration
PORT=8080
WEB_DIR=public
# SMTP Configuration
SMTP_HOST=mail.example.com
SMTP_PORT=587
SMTP_USER=user@example.com
SMTP_PASS=secretpassword
# Email Addresses
TO_EMAIL=destination@example.com
FROM_EMAIL=sender@example.com