diff --git a/.gitignore b/.gitignore index 2eea525..c66ba3a 100644 --- a/.gitignore +++ b/.gitignore @@ -1 +1,2 @@ -.env \ No newline at end of file +.env +.venv \ No newline at end of file diff --git a/Dockerfile b/Dockerfile index cf8b794..fddfa90 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,7 +8,7 @@ WORKDIR /app COPY requirements.txt . # Install dependencies -RUN pip3 install -r requirements.txt +RUN pip3 install --no-cache-dir -r requirements.txt # Copy the rest of the project COPY . . diff --git a/__pycache__/auth.cpython-310.pyc b/__pycache__/auth.cpython-310.pyc new file mode 100644 index 0000000..8fc0363 Binary files /dev/null and b/__pycache__/auth.cpython-310.pyc differ diff --git a/__pycache__/calendar_service.cpython-310.pyc b/__pycache__/calendar_service.cpython-310.pyc new file mode 100644 index 0000000..71912c1 Binary files /dev/null and b/__pycache__/calendar_service.cpython-310.pyc differ diff --git a/__pycache__/database.cpython-310.pyc b/__pycache__/database.cpython-310.pyc new file mode 100644 index 0000000..fa666c1 Binary files /dev/null and b/__pycache__/database.cpython-310.pyc differ diff --git a/__pycache__/email_service.cpython-310.pyc b/__pycache__/email_service.cpython-310.pyc new file mode 100644 index 0000000..57a44fe Binary files /dev/null and b/__pycache__/email_service.cpython-310.pyc differ diff --git a/__pycache__/models.cpython-310.pyc b/__pycache__/models.cpython-310.pyc new file mode 100644 index 0000000..67686f7 Binary files /dev/null and b/__pycache__/models.cpython-310.pyc differ diff --git a/__pycache__/payment_service.cpython-310.pyc b/__pycache__/payment_service.cpython-310.pyc new file mode 100644 index 0000000..f71d825 Binary files /dev/null and b/__pycache__/payment_service.cpython-310.pyc differ diff --git a/__pycache__/r2_storage.cpython-310.pyc b/__pycache__/r2_storage.cpython-310.pyc new file mode 100644 index 0000000..7c0a36e Binary files /dev/null and b/__pycache__/r2_storage.cpython-310.pyc differ diff --git a/__pycache__/server.cpython-310.pyc b/__pycache__/server.cpython-310.pyc new file mode 100644 index 0000000..4e0ed30 Binary files /dev/null and b/__pycache__/server.cpython-310.pyc differ diff --git a/__pycache__/wordpress_parser.cpython-310.pyc b/__pycache__/wordpress_parser.cpython-310.pyc new file mode 100644 index 0000000..d32705f Binary files /dev/null and b/__pycache__/wordpress_parser.cpython-310.pyc differ diff --git a/docker-compose.yml b/docker-compose.yml index 0b7a220..dedf2a3 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -8,7 +8,7 @@ services: env_file: - .env environment: - DATABASE_URL: "{DATABASE_URL}" + DATABASE_URL: ${DATABASE_URL} volumes: - .:/app # sync code for hot reload diff --git a/requirements.txt b/requirements.txt index 4fa6855..13ceacf 100644 --- a/requirements.txt +++ b/requirements.txt @@ -30,7 +30,7 @@ motor==3.3.1 msal==1.27.0 mypy==1.18.2 mypy_extensions==1.1.0 -numpy==2.3.5 +numpy==2.2.6 oauthlib==3.3.1 packaging==25.0 pandas==2.3.3