Files
barkeser2002 dfcba64886 Changes to be committed:
modified:   .gitignore
	new file:   .npmignore
	new file:   LICENSE
	modified:   Procfile
	modified:   README.md
	modified:   bin/ddrive.js
	new file:   config/.env_sample
2023-01-31 03:29:04 +03:00

13 lines
635 B
Plaintext

# Required
DATABASE_URL=postgres://ddrive:ddrive@127.0.0.1:5429/ddrive // Postgres DB URL
WEBHOOKS= // ',' seperated urls
# Optional
PORT=3000 // HTTP Server port
REQUEST_TIMEOUT=60000 // Request timeout - Increase if you have slow internet connection
CHUNK_SIZE=7864320 // 7.5MB - Can't increase. Webhooks are max allowed to 8MB
SECRET=myrandomsecret // Put here something if you want to encrypt your files. May cause very high cpu usage
PUBLIC_ACCESS=READ_ONLY_FILE // ['READ_ONLY_FILE', 'READ_ONLY_PANEL'] Allow public user to access to download link of file or read only access of whole panel
AUTH=admin:admin
UPLOAD_CONCURRENCY=