🎉 Initial commit - Hazard Odoo 16 project

- Custom modules: hazard_shopify, hazard_inventory_report, hazard_website
- Third-party modules: bi_sql_editor, query_deluxe, sql_request_abstract, l10n_mx_sat_sync_itadmin_ee
- Docker setup: Odoo 16 + PostgreSQL 17
- Utility scripts: backup_hazard.sh, update_module.py
- Agent configuration: .agents/AGENTS.md
- Security: Enterprise modules, credentials, backups and production data excluded via .gitignore
This commit is contained in:
2026-06-30 06:12:35 -06:00
commit 28d9e56f47
350 changed files with 99832 additions and 0 deletions
+35
View File
@@ -0,0 +1,35 @@
services:
db:
image: postgres:17
container_name: odoo-16-db-hazard-new
environment:
POSTGRES_USER: odoo
POSTGRES_PASSWORD: odoo
POSTGRES_DB: postgres
volumes:
- odoo-db-data-hazard-new:/var/lib/postgresql/data
odoo:
build: .
container_name: odoo-16-hazard-new
depends_on:
- db
ports:
- "16001:8069"
ulimits:
nofile:
soft: 65536
hard: 65536
volumes:
- ./Addons/enterprise:/mnt/enterprise
- ./Addons/custom:/mnt/extra-addons
- ./Conf:/etc/odoo
- odoo-web-data-hazard-new:/var/lib/odoo
environment:
- HOST=db
- USER=odoo
- PASSWORD=odoo
volumes:
odoo-db-data-hazard-new:
odoo-web-data-hazard-new: