#!/bin/bash # # Start Local CannaiQ Stack # # Runs PostgreSQL + Backend with local filesystem storage. # NO MinIO, NO Kubernetes, NO remote connections. # set -e echo "Starting CannaiQ Local Development Stack..." echo "============================================" echo " - PostgreSQL: localhost:54320" echo " - Backend API: localhost:3010" echo " - Storage: ./storage (local filesystem)" echo " - NO MinIO" echo "" # Ensure storage directories exist mkdir -p storage/products mkdir -p storage/brands # Start services docker-compose -f docker-compose.local.yml up "$@"