This commit is contained in:
Corrado Mulas
2026-06-19 12:27:23 +02:00
parent 2d134be28f
commit f4f16fe1d1
3 changed files with 3 additions and 2 deletions

View File

@@ -57,7 +57,7 @@ The application follows a modular architecture with the following components:
3. Run the application:
```bash
python src/main.py
python -m src.main
```
## Docker

View File

@@ -2,4 +2,4 @@
set -e
# Run the Python application
exec python /app/src/main.py
exec python -m src.main

1
src/__init__.py Normal file
View File

@@ -0,0 +1 @@