From 3f3757416362710d4c3949462acb6f7f41a62cbf Mon Sep 17 00:00:00 2001 From: leeyj Date: Mon, 23 Mar 2026 01:21:14 +0900 Subject: [PATCH] chore: exclude source files and allow binaries --- .gitignore | 9 +++++++-- 1 file changed, 7 insertions(+), 2 deletions(-) diff --git a/.gitignore b/.gitignore index ca6d038..968128b 100644 --- a/.gitignore +++ b/.gitignore @@ -4,9 +4,14 @@ __pycache__/ *.py[cod] *$py.class -*.so -*.pyd +# *.so <-- Allow binaries for deployment +# *.pyd <-- Allow binaries for deployment .Python + +# --- Compiled Source Protection --- +routes/api_routes.py +logic/license_manager.py + env/ build/ develop-eggs/