10 lines
356 B
Bash
Executable File
10 lines
356 B
Bash
Executable File
#!/bin/bash
|
|
# Set environment variables
|
|
export ASPIRE_ENABLED=true
|
|
export ASPNETCORE_ENVIRONMENT=Oda
|
|
|
|
echo "Starting Aspire dashboard using existing MongoDB and InfluxDB..."
|
|
echo "Environment: $ASPNETCORE_ENVIRONMENT"
|
|
echo "Health endpoints will be available at /health and /alive on both APIs"
|
|
echo "Dashboard will be available at http://localhost:15888"
|