diff --git a/.gitignore b/.gitignore index 1fed9ad..e67a3e9 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,9 @@ -# Ignore Python cache files in all directories -__pycache__/ -*/__pycache__/ -*.pyc -*.pyo +# Ignore only __pycache__ inside the app directory +app/**/__pycache__/ + +# Ignore compiled Python files inside app +app/**/*.pyc +app/**/*.pyo + -# Ignore environment files .env diff --git a/app/blueprints/__pycache__/__init__.cpython-313.pyc b/app/blueprints/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 4d8ad6e..0000000 Binary files a/app/blueprints/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/blueprints/__pycache__/auth.cpython-313.pyc b/app/blueprints/__pycache__/auth.cpython-313.pyc deleted file mode 100644 index 9ef86f9..0000000 Binary files a/app/blueprints/__pycache__/auth.cpython-313.pyc and /dev/null differ diff --git a/app/blueprints/__pycache__/default.cpython-313.pyc b/app/blueprints/__pycache__/default.cpython-313.pyc deleted file mode 100644 index 882f720..0000000 Binary files a/app/blueprints/__pycache__/default.cpython-313.pyc and /dev/null differ diff --git a/app/blueprints/__pycache__/register_blueprint.cpython-313.pyc b/app/blueprints/__pycache__/register_blueprint.cpython-313.pyc deleted file mode 100644 index 7b11e3c..0000000 Binary files a/app/blueprints/__pycache__/register_blueprint.cpython-313.pyc and /dev/null differ diff --git a/app/blueprints/__pycache__/user.cpython-313.pyc b/app/blueprints/__pycache__/user.cpython-313.pyc deleted file mode 100644 index e870b81..0000000 Binary files a/app/blueprints/__pycache__/user.cpython-313.pyc and /dev/null differ diff --git a/app/configs/__pycache__/__init__.cpython-313.pyc b/app/configs/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 174ed44..0000000 Binary files a/app/configs/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/configs/__pycache__/config.cpython-313.pyc b/app/configs/__pycache__/config.cpython-313.pyc deleted file mode 100644 index b1883c0..0000000 Binary files a/app/configs/__pycache__/config.cpython-313.pyc and /dev/null differ diff --git a/app/controllers/__pycache__/__init__.cpython-313.pyc b/app/controllers/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index ec97f13..0000000 Binary files a/app/controllers/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/controllers/__pycache__/auth_controller.cpython-313.pyc b/app/controllers/__pycache__/auth_controller.cpython-313.pyc deleted file mode 100644 index bcb1cdd..0000000 Binary files a/app/controllers/__pycache__/auth_controller.cpython-313.pyc and /dev/null differ diff --git a/app/controllers/__pycache__/user_controller.cpython-313.pyc b/app/controllers/__pycache__/user_controller.cpython-313.pyc deleted file mode 100644 index e9bf3f9..0000000 Binary files a/app/controllers/__pycache__/user_controller.cpython-313.pyc and /dev/null differ diff --git a/app/database/__pycache__/__init__.cpython-313.pyc b/app/database/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index e78f65b..0000000 Binary files a/app/database/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/database/__pycache__/db.cpython-313.pyc b/app/database/__pycache__/db.cpython-313.pyc deleted file mode 100644 index 116d94b..0000000 Binary files a/app/database/__pycache__/db.cpython-313.pyc and /dev/null differ diff --git a/app/repositories/__pycache__/__init__.cpython-313.pyc b/app/repositories/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 0d0d018..0000000 Binary files a/app/repositories/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/repositories/__pycache__/user_repository.cpython-313.pyc b/app/repositories/__pycache__/user_repository.cpython-313.pyc deleted file mode 100644 index 0ac12ec..0000000 Binary files a/app/repositories/__pycache__/user_repository.cpython-313.pyc and /dev/null differ diff --git a/app/services/__pycache__/__init__.cpython-313.pyc b/app/services/__pycache__/__init__.cpython-313.pyc deleted file mode 100644 index 0ae7392..0000000 Binary files a/app/services/__pycache__/__init__.cpython-313.pyc and /dev/null differ diff --git a/app/services/__pycache__/auth_service.cpython-313.pyc b/app/services/__pycache__/auth_service.cpython-313.pyc deleted file mode 100644 index 9320b18..0000000 Binary files a/app/services/__pycache__/auth_service.cpython-313.pyc and /dev/null differ diff --git a/app/services/__pycache__/user_service.cpython-313.pyc b/app/services/__pycache__/user_service.cpython-313.pyc deleted file mode 100644 index b818d11..0000000 Binary files a/app/services/__pycache__/user_service.cpython-313.pyc and /dev/null differ