summaryrefslogtreecommitdiff
path: root/.env.example.php
blob: 4bddd34d3879bbfd871230329b724c9cf8e89ef8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
<?php

declare(strict_types=1);

// Copy this file as .env.php

return [
  'clientID' => '',
  'clientSecret' => '',
  'redirectURI' => 'http://127.0.0.1:8888/callback',
  'state' => '<REPLACE WITH A RANDOM STRING TO PROTECT AGAINST CSRF>',
  'serverAddress' => '127.0.0.1',
  'serverPort' => 8888,
  'serverTimeout' => 60,
  'playlistName' => '',
];