fix: resolve static files and import issues

- Fix static files not loading due to volume mount conflict
- Remove problematic volume mount from docker-compose.yml
- Add __init__.py files to make Python packages
- Fix all import statements to use relative imports
- Update start.sh to use correct module name
- Update config.py with correct default paths and values
- Ensure all environment variables are properly loaded from .env file
This commit is contained in:
2025-08-20 18:14:35 +03:00
parent 12dcc69de8
commit b49b543d72
20 changed files with 76 additions and 31 deletions
+2 -2
View File
@@ -12,13 +12,13 @@ from typing import List, Dict, Optional
import docker
from app.core.config import (
from core.config import (
DEFAULT_TAIL,
DEFAULT_PROJECT,
DEFAULT_PROJECTS,
SKIP_UNHEALTHY
)
from app.core.logger import docker_logger
from core.logger import docker_logger
# Инициализация Docker клиента
docker_client = docker.from_env()