File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -8,7 +8,17 @@ const workerId =
88 String ( threadId )
99
1010process . env . LITEFS_DIR ??= path . join ( os . tmpdir ( ) , 'epic-stack-litefs' )
11- process . env . CACHE_DATABASE_PATH ?? = path . join (
11+ process . env . CACHE_DATABASE_PATH = path . join (
1212 os . tmpdir ( ) ,
1313 `epic-stack-cache-${ process . pid } -${ workerId } .db` ,
1414)
15+ process . env . DATABASE_PATH ??= './prisma/data.db'
16+ process . env . DATABASE_URL ??= 'file:./data.db?connection_limit=1'
17+ process . env . SESSION_SECRET ??= 'test-session-secret'
18+ process . env . INTERNAL_COMMAND_TOKEN ??= 'test-internal-token'
19+ process . env . HONEYPOT_SECRET ??= 'test-honeypot-secret'
20+ process . env . AWS_ACCESS_KEY_ID ??= 'test-access-key'
21+ process . env . AWS_SECRET_ACCESS_KEY ??= 'test-secret-key'
22+ process . env . AWS_REGION ??= 'auto'
23+ process . env . AWS_ENDPOINT_URL_S3 ??= 'https://fly.storage.tigris.dev'
24+ process . env . BUCKET_NAME ??= 'test-bucket'
You can’t perform that action at this time.
0 commit comments