A community based topic aggregation platform built on atproto
at main 533 B view raw
1#!/bin/bash 2# Development server runner - loads .env.dev before starting 3# Uses -tags dev to include dev-only code (localhost OAuth resolvers, etc.) 4 5set -a # automatically export all variables 6source .env.dev 7set +a 8 9echo "🚀 Starting Coves server in DEV mode..." 10echo " IS_DEV_ENV: $IS_DEV_ENV" 11echo " PLC_DIRECTORY_URL: $PLC_DIRECTORY_URL" 12echo " JETSTREAM_URL: $JETSTREAM_URL" 13echo " APPVIEW_PUBLIC_URL: $APPVIEW_PUBLIC_URL" 14echo " PDS_URL: $PDS_URL" 15echo " Build tags: dev" 16echo "" 17 18go run -tags dev ./cmd/server