You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
645 B
14 lines
645 B
// Replace this with your api key from the "API Key Manager" at the tiny.cloud account page
|
|
exports.apiKey = 'your-api-key-here';
|
|
|
|
// Replace the contents of the private.key file with the one from the "JWT Key Manager" at the tiny.cloud account page
|
|
exports.privateKeyFile = './private.key';
|
|
|
|
// This is the fake database that the login authenticates against
|
|
exports.users = [
|
|
{ username: 'johndoe', password: 'password', fullname: 'John Doe' },
|
|
{ username: 'janedoe', password: 'password', fullname: 'Jane Doe' }
|
|
];
|
|
|
|
// If this is enabled the root of Tiny Drive will be within a directory named as the user login
|
|
exports.scopeUser = false;
|