Files
b0esche_cloud/scripts/dev-backend.sh

15 lines
213 B
Bash
Raw Normal View History

2025-12-18 00:11:30 +01:00
#!/bin/bash
set -e
cd "$(dirname "$0")/.."
cd go_cloud
if [ ! -f .env ]; then
cp .env.example .env
echo "Copied .env.example to .env. Please edit it with your settings."
exit 1
fi
go run ./cmd/api