squashed commit

This commit is contained in:
hoangvv
2026-09-18 13:55:25 +07:00
commit 039c98d4d0
45882 changed files with 24235585 additions and 0 deletions
Executable
+17
View File
@@ -0,0 +1,17 @@
#!/usr/bin/env python3
# set server timezone in UTC before time module imported
__import__('os').environ['TZ'] = 'UTC'
import os
# Conditionally enable remote debugging
if os.environ.get("ODOO_DEBUGPY", "0") == "1":
import debugpy
debugpy.listen(("0.0.0.0", 5678))
print("✅ Waiting for VS Code debugger to attach on port 5678...")
debugpy.wait_for_client()
import odoo
if __name__ == "__main__":
odoo.cli.main()