forked from lix-project/hydra
d1237c315d
runHyda automatically starts hydra and postgres: ``` $ nix-shell -A runHydra ``` The shell receives hydra from the working copy as buildInput. Running hydra, queue-runner, evaluator and postgres is managed by foreman (https://github.com/ddollar/foreman) and configured in `Procfile`.
5 lines
112 B
Bash
Executable file
5 lines
112 B
Bash
Executable file
#!/bin/sh
|
|
|
|
initdb ./.hydra-data/postgres
|
|
exec postgres -D ./.hydra-data/postgres -k $(pwd)/.hydra-data/postgres
|