forked from Oneirocom/Magick
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy path.env
35 lines (26 loc) · 1.09 KB
/
.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
26
27
28
29
30
31
32
33
34
35
###### Default settings, override in .env.local file that is auto-generated on install ######
# Database
### sqlite (default for local development, for postgres use 'pg')
### for vector search, we recommend supabase or bit.io with pgvector extension enabled
DATABASE_TYPE=sqlite
# sqlite file path, absolute or relative path
## for postgres, this should be your full connection string, starting with postgres://
DATABASE_URL=./mydb.sqlite
SKIP_DB_EXTENSIONS=false
# Copy these to .env.local and fill in your own values to customize
CLIENT_PLUGINS=discord,twitter,rest,loop,finetune,openai,search
SERVER_PLUGINS=discord,twitter,rest,loop,finetune,openai,search
# Memory to use for build cache
NODE_OPTIONS="--max-old-space-size=8192"
# Server settings
PAGINATE_DEFAULT=100
PAGINATE_MAX=1000
# Set this to false in production
IGNORE_AUTH=true
VITE_IGNORE_AUTH=true
# Change this in production to something impossible to guess
JWT_SECRET=secret
# Client settings
VITE_APP_FILE_SERVER_URL=http://localhost:65530
VITE_APP_SPEECH_SERVER_URL=http://localhost:65532
VITE_APP_TRUSTED_PARENT_URL=http://localhost:3000