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
613 B

  1. // Replace this with your api key from the "API Key Manager" at the tiny.cloud account page
  2. exports.apiKey = 'your-api-key';
  3. // Replace the contents of the private.key file with the one from the "JWT Key Manager" at the tiny.cloud account page
  4. exports.privateKeyFile = ``;
  5. // This is the fake database that the login authenticates against
  6. exports.users = [
  7. { login: 'johndoe', password: 'password', name: 'John Doe' },
  8. { login: 'janedoe', password: 'password', name: 'Jane Doe' }
  9. ];
  10. // If this is enabled the root of Tiny Drive will be within a directory named as the user login
  11. exports.scopeUser = false;