first commit

This commit is contained in:
Space-Banane
2026-02-22 14:55:10 +01:00
commit 9235748a47
23 changed files with 2343 additions and 0 deletions

12
docker-compose.yml Normal file
View File

@@ -0,0 +1,12 @@
services:
bot:
image: node:24
container_name: shsf_dc_bot
restart: unless-stopped
env_file: .env
working_dir: /app
volumes:
- .:/app
ports:
- "$PORT:$PORT"
command: sh -c "npm i -g pnpm && pnpm install && pnpm dev"