From c6b2d60821a7a992d2d8f2cb27e5056d66cec5f4 Mon Sep 17 00:00:00 2001 From: Holly Date: Sun, 23 Jul 2023 00:14:05 +0100 Subject: [PATCH] add example config --- config.example.json | 18 ++++++++++++++++++ 1 file changed, 18 insertions(+) create mode 100755 config.example.json diff --git a/config.example.json b/config.example.json new file mode 100755 index 0000000..c63b560 --- /dev/null +++ b/config.example.json @@ -0,0 +1,18 @@ +{ + "baseURL":"https://example.com/", + "acceptedTypes": [ + ".png", + ".jpg", + ".jpeg", + ".gif", + ".mp4" + ], + "uploadKey":"", + "database": { + "databaseAddress": "127.0.0.1", + "databasePort": 3306, + "databaseUsername": "root", + "databasePassword": "password", + "databaseName": "EUS" + } +}