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 @@ +