9 lines
246 B
Bash
Executable file
9 lines
246 B
Bash
Executable file
#!/usr/bin/env bash
|
|
set -xe
|
|
export PORT=9010
|
|
|
|
# This will run ghcid, which uses `./.ghcid` to invoke your program main entry
|
|
# point, with the specified args.
|
|
#
|
|
# If you change ./.ghcid, ghcid will automatically reload.
|
|
exec nix develop -c ghcid
|