Add additional project structure, config, Docker support, and more prompt files

This commit is contained in:
Krypto Kajun
2025-09-12 01:21:50 -05:00
parent ba80b273e4
commit c5843a5667
17 changed files with 762 additions and 23 deletions

15
docker-compose.yml Normal file
View File

@@ -0,0 +1,15 @@
version: '3.8'
services:
mev-bot:
build: .
container_name: mev-bot
restart: unless-stopped
volumes:
- ./config:/app/config
- ./data:/app/data
environment:
- LOG_LEVEL=info
ports:
- "8080:8080"
command: ["start"]