mirror of
https://github.com/barkeser2002/ddrive.git
synced 2026-09-25 04:30:09 +03:00
modified: .gitignore new file: .npmignore new file: LICENSE modified: Procfile modified: README.md modified: bin/ddrive.js new file: config/.env_sample
13 lines
635 B
Plaintext
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=
|