11 lines
160 B
Bash
Executable File
11 lines
160 B
Bash
Executable File
#!/usr/bin/env bash
|
|
|
|
echo "Starting media-service in dev mode..."
|
|
|
|
# Source .env if exists
|
|
if [ -f ".env" ]; then
|
|
export $(grep -v '^#' .env | xargs)
|
|
fi
|
|
|
|
air
|