first commit

This commit is contained in:
CHIEFSOFT\ameye
2025-05-03 22:16:10 -04:00
commit 108378a31e
33 changed files with 1624 additions and 0 deletions
+13
View File
@@ -0,0 +1,13 @@
version: '3.8'
services:
myfit-corebackend:
build: ./services/web
command: python manage.py run -h 0.0.0.0
volumes:
- ./services/web/:/usr/src/app/
ports:
- "${APP_PORT:-14500}:5000"
env_file:
- ./.env.dev
restart: always