A community based topic aggregation platform built on atproto
at 78826e83cb36e107e8b62d4cac4451bb66ebca07 14 lines 343 B view raw
1#!/bin/bash 2# Development server runner - loads .env.dev before starting 3 4set -a # automatically export all variables 5source .env.dev 6set +a 7 8echo "🚀 Starting Coves server in DEV mode..." 9echo " IS_DEV_ENV: $IS_DEV_ENV" 10echo " PLC_DIRECTORY_URL: $PLC_DIRECTORY_URL" 11echo " JETSTREAM_URL: $JETSTREAM_URL" 12echo "" 13 14go run ./cmd/server