Files
wild-cloud-dev/.envrc.example

18 lines
507 B
Plaintext

# API dev
export WILD_CENTRAL_ENV=development
export WILD_API_DATA_DIR=$PWD/data
export WILD_DIRECTORY=$PWD/directory
# CORS configuration for production (comma-separated origins)
# Defaults to localhost development origins if not set
# export WILD_CORS_ORIGINS=https://app.wildcloud.com,https://www.wildcloud.com
# CLI/App dev
export WILD_API_URI=http://localhost:5055
export WILD_CLI_DATA=$HOME/.wildcloud
# Source activate.sh in interactive shells
if [[ $- == *i* ]]; then
source ./activate.sh
fi