summaryrefslogtreecommitdiff
path: root/.env.example.php
diff options
context:
space:
mode:
Diffstat (limited to '.env.example.php')
-rw-r--r--.env.example.php16
1 files changed, 16 insertions, 0 deletions
diff --git a/.env.example.php b/.env.example.php
new file mode 100644
index 0000000..4bddd34
--- /dev/null
+++ b/.env.example.php
@@ -0,0 +1,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' => '',
+];