22 lines
426 B
Bash
Executable File
22 lines
426 B
Bash
Executable File
#!/usr/bin/env bash
|
|
set -e
|
|
|
|
echo "Setting up development environment..."
|
|
|
|
# Copy .env if not exists
|
|
if [ ! -f .env ]; then
|
|
cp .env.example .env
|
|
echo "Created .env from .env.example"
|
|
fi
|
|
|
|
# Create music directory
|
|
mkdir -p music
|
|
echo "Music directory: ./music (drop your files here)"
|
|
|
|
# Init pipes
|
|
bash scripts/init-pipes.sh
|
|
|
|
echo ""
|
|
echo "Done! Run 'make dev' to start all services."
|
|
echo "Dashboard: http://localhost:8080"
|