A community based topic aggregation platform built on atproto
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