Scaffolds the CommunityOS monorepo per the implementation plan: 8 brand-neutral product modules (community_theme_base, community_membership, event_qr_ticketing, community_school, community_classifieds, community_benefits, community_interac, community_portal) plus the tncsc_deployment client layer, each with an App-Store-ready manifest, LGPL-3 license, and empty security/data/demo/tests/views scaffolding. Adds deploy/docker-compose.yml (Odoo 19 CE + Postgres 16), CI workflow that installs all modules with --test-enable, and scripts/check_brand_leak.py + check_manifests.py enforcing the no-client-identity-in-product-code and manifest-completeness rules. Verified locally: all 9 modules install clean on a fresh Odoo 19 database, and the brand-leak check correctly fails when a client term is added to a product module and passes once removed. Co-Authored-By: Claude Sonnet 5 <noreply@anthropic.com>
32 lines
642 B
YAML
32 lines
642 B
YAML
services:
|
|
db:
|
|
image: postgres:16
|
|
environment:
|
|
POSTGRES_USER: odoo
|
|
POSTGRES_PASSWORD: odoo
|
|
POSTGRES_DB: postgres
|
|
volumes:
|
|
- communityos_db:/var/lib/postgresql/data
|
|
restart: unless-stopped
|
|
|
|
odoo:
|
|
image: odoo:19.0
|
|
depends_on:
|
|
- db
|
|
ports:
|
|
- "8069:8069"
|
|
environment:
|
|
HOST: db
|
|
USER: odoo
|
|
PASSWORD: odoo
|
|
volumes:
|
|
- ../addons:/mnt/extra-addons
|
|
- ./odoo.conf:/etc/odoo/odoo.conf
|
|
- communityos_data:/var/lib/odoo
|
|
command: ["odoo", "-c", "/etc/odoo/odoo.conf"]
|
|
restart: unless-stopped
|
|
|
|
volumes:
|
|
communityos_db:
|
|
communityos_data:
|