zero-knowledge file sharing
13
fork

Configure Feed

Select the types of activity you want to include in your feed.

env comments

Juliet 99a44873 44fa55db

+8 -6
+7
.env.example
··· 1 + # Port to listen on 1 2 PORT=3000 3 + 4 + # Directory to store uploaded files and the database 2 5 DATA_DIR=./data 6 + 7 + # Maximum upload file size in bytes (default: 100MB) 3 8 MAX_FILE_SIZE=100000000 9 + 10 + # Maximum TTL for uploaded files (e.g. 30m, 24h, 7d) 4 11 MAX_TTL=7d
+1 -6
tsconfig.json
··· 18 18 "skipLibCheck": true, 19 19 "noFallthroughCasesInSwitch": true, 20 20 "noUncheckedIndexedAccess": true, 21 - "noImplicitOverride": true, 22 - 23 - // Some stricter flags (disabled by default) 24 - "noUnusedLocals": false, 25 - "noUnusedParameters": false, 26 - "noPropertyAccessFromIndexSignature": false 21 + "noImplicitOverride": true 27 22 } 28 23 }