feat: implement Project Management with Gantt Chart, Milestones, and CRM enhancements

This commit is contained in:
2026-03-01 00:26:59 +01:00
parent 4b5609a75e
commit 6444cf1e81
47 changed files with 15312 additions and 7373 deletions

View File

@@ -15,6 +15,7 @@ services:
build:
context: .
dockerfile: Dockerfile.dev
restart: unless-stopped
working_dir: /app
volumes:
- .:/app
@@ -22,15 +23,17 @@ services:
- apps_node_modules:/app/apps/web/node_modules
- ../at-mintel:/at-mintel
- pnpm_store:/pnpm # Cache pnpm store
env_file:
- .env
environment:
- NODE_ENV=development
- NEXT_TELEMETRY_DISABLED=1
- CI=true
# - CI=true
- NPM_TOKEN=${NPM_TOKEN:-}
- DATABASE_URI=postgres://${postgres_DB_USER:-payload}:${postgres_DB_PASSWORD:-payload}@postgres-db:5432/${postgres_DB_NAME:-payload}
- PAYLOAD_SECRET=dev-secret
command: >
sh -c "pnpm install && pnpm --filter @mintel/web dev"
sh -c "pnpm install --no-frozen-lockfile && pnpm --filter @mintel/web dev"
networks:
- default