summaryrefslogtreecommitdiff
path: root/.env.example.php
diff options
context:
space:
mode:
authorDavid T. Sadler <davidtsadler@googlemail.com>2026-08-09 20:04:39 +0100
committerDavid T. Sadler <davidtsadler@googlemail.com>2026-08-09 20:04:39 +0100
commitb9c4f1dcf1333c14e2d1b67561ec7a5f955baa6e (patch)
tree610536953be739d0778f19c90c477f080a24718a /.env.example.php
Initial commitHEADmain
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' => '',
+];