This repository has been archived on 2025-03-30. You can view files and clone it, but cannot push or open issues or pull requests.
bactdb/serve.sh
2015-07-16 12:22:24 -08:00

11 lines
183 B
Bash
Executable file

#!/bin/sh
if [ -f .env ]; then
source .env
fi
SECRET=secret \
PGDATABASE=bactdbtest \
DOMAINS="http://localhost:4200" \
ACCOUNT_KEYS=$ACCOUNT_KEYS \
bash -c 'go run *.go serve'