feat: Implement price list import feature with preview and apply options feat: Create price rules management page with CRUD operations feat: Develop quotes management page with itemized quotes and status tracking feat: Introduce organization registration page for new users feat: Build suppliers management page with detailed supplier information feat: Create users management page for inviting and managing roles chore: Add TypeScript configuration for improved type checking chore: Set up Vite configuration for development server and API proxy chore: Add Vite environment type definitions for better TypeScript support
34 lines
809 B
YAML
34 lines
809 B
YAML
services:
|
|
postgres:
|
|
image: postgres:16
|
|
environment:
|
|
POSTGRES_USER: companytool
|
|
POSTGRES_PASSWORD: companytool
|
|
POSTGRES_DB: companytool
|
|
ports:
|
|
- "5432:5432"
|
|
volumes:
|
|
- companytool-postgres:/var/lib/postgresql/data
|
|
|
|
backend:
|
|
build:
|
|
context: .
|
|
dockerfile: backend/Dockerfile
|
|
profiles:
|
|
- backend
|
|
depends_on:
|
|
- postgres
|
|
environment:
|
|
DATABASE_URL: postgres://companytool:companytool@postgres:5432/companytool
|
|
BACKEND_BIND: 0.0.0.0:8080
|
|
COMPANYTOOL_EMAIL_TRANSPORT: outbox
|
|
COMPANYTOOL_DOCUMENT_STORAGE_DIR: /var/lib/companytool/documents
|
|
ports:
|
|
- "8080:8080"
|
|
volumes:
|
|
- companytool-documents:/var/lib/companytool/documents
|
|
|
|
volumes:
|
|
companytool-postgres:
|
|
companytool-documents:
|