Init Discord OAuth2

This commit is contained in:
Arthur Puechberty
2026-01-14 23:58:42 +01:00
commit b18657e01c
7 changed files with 1288 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
services:
web:
image: node:20
container_name: discord_bot_web
working_dir: /app
volumes:
- ./app:/app
ports:
- "${PORT}:${PORT}"
env_file:
- ./.env
command: sh -c "npm install && node server.js"
restart: unless-stopped