This project is a part of: Voltigo
This project is used as a central point to sending out messages, it's based on some older project of mine, thus it also supports Discord Webhooks.
- make sure that mailer is running, You can use already prepared mailer project from here
- make sure that database container is running, You need to either provide Your own one or create
docker-compose
with this content
# This should work for all backend projects
services:
db:
container_name: voltigo-projects-databases
image: mysql:latest
restart: always
tty: true
environment:
MYSQL_ROOT_PASSWORD: root
extra_hosts:
- "host.docker.internal:host-gateway"
volumes:
- db:/var/lib/mysql
ports:
- 3661:3306
volumes:
db:
- go inside the
docker
directory, - call
docker-compose -f docker-compose-prod.yaml up -d
, - the project is now reachable:
- locally under:
127.0.0.1:8006
- within other voltigo-related containers under:
host.docker.internal:8006
- locally under:
- go to start page (
/
) and clickregister
, - set user and password and confirm,
- all is ready (no confirmation email is sent etc.),
- you can now log in,