17 lines
279 B
Bash
Executable File
17 lines
279 B
Bash
Executable File
#!/bin/sh
|
|
set -eu
|
|
|
|
# Max response size 10MiB
|
|
MAX_RESPONSE_SIZE=10485760 \
|
|
LOG_LEVEL=debug \
|
|
ROOT_PATH=./snaps \
|
|
RESPONSE_TIMEOUT=10 \
|
|
NUM_OF_WORKERS=1 \
|
|
WORKER_BATCH_SIZE=1 \
|
|
PG_DATABASE=gemini \
|
|
PG_HOST=127.0.0.1 \
|
|
PG_PORT=5433 \
|
|
PG_USER=gemini \
|
|
PG_PASSWORD=gemini \
|
|
dlv debug
|