-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy path.env
25 lines (23 loc) · 889 Bytes
/
.env
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
# postgres vars
# to see all env vars supported by libpq, please see
# https://www.postgresql.org/docs/current/libpq-envars.html
export PGHOST="127.0.0.1"
# using 127.0.0.1 instead of localhost because (co)lima
# hasn't implemented ipv6 port forwarding yet
export PGPORT="5432"
export PGUSER="postgres"
export PGPASSWORD="password"
export PGDATABASE="swoop"
export PGSSLMODE="disable"
export PGAUTHMETHOD="trust"
# dbmate vars
DBMATE_MIGRATIONS_TABLE="swoop.schema_migrations"
DATABASE_URL="postgres://${PGUSER}:${PGPASSWORD}@${PGHOST}:${PGPORT}/${PGDATABASE}"
# swoop vars
export SWOOP_ACCESS_KEY_ID="minio"
export SWOOP_SECRET_ACCESS_KEY="password"
export SWOOP_S3_ENDPOINT="http://127.0.0.1:9000"
export SWOOP_BUCKET_NAME="swoop"
export SWOOP_EXECUTION_DIR="s3://${SWOOP_BUCKET_NAME}/execution"
export SWOOP_WORKFLOW_CONFIG_FILE="workflow-config.yml"
export SWOOP_API_PORT="8000"