From f4f16fe1d17c004dfc4fe4dd79db1fe3dee590bc Mon Sep 17 00:00:00 2001 From: Corrado Mulas Date: Fri, 19 Jun 2026 12:27:23 +0200 Subject: [PATCH] Fix path --- README.md | 2 +- entrypoint.sh | 2 +- src/__init__.py | 1 + 3 files changed, 3 insertions(+), 2 deletions(-) create mode 100644 src/__init__.py diff --git a/README.md b/README.md index a9d8bb6..a4a442d 100644 --- a/README.md +++ b/README.md @@ -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 diff --git a/entrypoint.sh b/entrypoint.sh index b262726..4d75af3 100644 --- a/entrypoint.sh +++ b/entrypoint.sh @@ -2,4 +2,4 @@ set -e # Run the Python application -exec python /app/src/main.py \ No newline at end of file +exec python -m src.main diff --git a/src/__init__.py b/src/__init__.py new file mode 100644 index 0000000..8b13789 --- /dev/null +++ b/src/__init__.py @@ -0,0 +1 @@ +