-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathdevelopment.env.template
More file actions
47 lines (43 loc) · 2.37 KB
/
development.env.template
File metadata and controls
47 lines (43 loc) · 2.37 KB
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
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
# ==============================================================================
# MORGANA - DEVELOPMENT ENVIRONMENT
# ==============================================================================
# For building Morgana and Cauldron from source code.
# Versions are auto-generated from Directory.Build.props into .env.versions
#
# Usage:
# 1. Copy this file to .env
# 2. Fill in your secrets below
# 3. Build Morgana: dotnet build ./Morgana
# 4. Build Cauldron: dotnet build ./Cauldron
# 5. Build docker image: docker compose --env-file .env --env-file .env.versions build
# 6. Manage docker image: docker compose --env-file .env --env-file .env.versions up|down|...
# ==============================================================================
# ENCRYPTION
# ==============================================================================
# AES-256 key (32 bytes) encoded in Base64 for encrypting SQLite databases
# Generate a new key with:
# Linux/Mac: openssl rand -base64 32
# PowerShell: $bytes = New-Object byte[] 32; [System.Security.Cryptography.RandomNumberGenerator]::Fill($bytes); [Convert]::ToBase64String($bytes)
ENCRYPTIONKEY=YOUR_BASE64_ENCODED_256_BIT_KEY_HERE
# ==============================================================================
# LLM PROVIDER
# ==============================================================================
# Choose LLM provider: "anthropic" or "azureopenai"
# Uncomment and set the one you want to use:
#LLM_PROVIDER=anthropic
#LLM_PROVIDER=azureopenai
# ==============================================================================
# ANTHROPIC CONFIGURATION (required if LLM_PROVIDER=anthropic)
# ==============================================================================
# API Key for Claude
# Get your key from: https://console.anthropic.com/settings/keys
#ANTHROPIC_APIKEY=sk-ant-api03-YOUR_KEY_HERE
#ANTHROPIC_MODEL=claude-YOUR_MODEL_HERE
# ==============================================================================
# AZURE OPENAI CONFIGURATION (required if LLM_PROVIDER=azureopenai)
# ==============================================================================
# Configuration for Azure OpenAI
# Get credentials from Azure Portal: https://portal.azure.com
#AZUREOPENAI_APIKEY=YOUR_AZURE_OPENAI_KEY_HERE
#AZUREOPENAI_DEPLOYMENTNAME=YOUR_AZURE_OPENAI_DEPLOYMENT_HERE
#AZUREOPENAI_ENDPOINT=https://your-resource-name.openai.azure.com