24 lines
535 B
Bash
24 lines
535 B
Bash
#!/bin/bash
|
|
|
|
# Copy these to a .env.local file to override in local host
|
|
|
|
# This is what DIESEL cli uses
|
|
export DATABASE_URL="test_db.db"
|
|
|
|
## APP variables
|
|
# /etc/stormd/stormd.db
|
|
export STORMD_DB_PATH="stormd_db_local.db"
|
|
export STORMD_DB_ENC_KEY_FILE="stormd_db_enc.key"
|
|
# /etc/nebula/config.yml
|
|
export STORMD_NEBULA_CONFIG="nebula_config.yml"
|
|
# Auth key for admin API
|
|
export STORMD_NEXUS_ADMIN_AUTH_FILE="stormd_auth_key"
|
|
export STORMD_DAEMON_HTTP_PORT=37391
|
|
|
|
# ======
|
|
|
|
watch_file .env.local
|
|
dotenv_if_exists .env.local
|
|
|
|
use flake
|
|
|