diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..872339c --- /dev/null +++ b/.gitignore @@ -0,0 +1 @@ +app/__pycache__ \ No newline at end of file diff --git a/app/__pycache__/main.cpython-311.pyc b/app/__pycache__/main.cpython-311.pyc deleted file mode 100644 index a0e501b..0000000 Binary files a/app/__pycache__/main.cpython-311.pyc and /dev/null differ diff --git a/app/main.py b/app/main.py index 0f77b8c..5f35dbc 100644 --- a/app/main.py +++ b/app/main.py @@ -7,6 +7,6 @@ @app.get("/") def read_root(): return { - "Commit": os.environ.get('GIT_COMMIT') + "Commit": os.environ.get('GIT_COMMIT'), "From": os.environ.get('ENV', 'DEFAULT_ENV'), } \ No newline at end of file