first commit

This commit is contained in:
unknown
2025-12-08 21:35:55 +09:00
commit f343f405f7
5357 changed files with 923703 additions and 0 deletions

19
docker-compose.yml Normal file
View File

@@ -0,0 +1,19 @@
version: '3.8'
services:
api:
build: .
container_name: vconnect-api
ports:
- "8000:8000"
env_file:
- .env
restart: unless-stopped
volumes:
- ./logs:/app/logs
networks:
- vconnect-network
networks:
vconnect-network:
driver: bridge