removing more files so gitignore will stop tracking

This commit is contained in:
RossAsscends
2023-02-25 17:09:13 +09:00
parent 64a1ecac7e
commit d63c5683e3
2 changed files with 1 additions and 8 deletions

1
.gitignore vendored
View File

@ -8,3 +8,4 @@ public/backgrounds/
*.jsonl
public/settings.json
config.conf

View File

@ -1,8 +0,0 @@
const port = 8000;
const whitelist = ['127.0.0.1']; //Example for add several IP in whitelist: ['127.0.0.1', '192.168.0.10']
const whitelistMode = true; //Disabling enabling the ip whitelist mode. true/false
const autorun = true; //Autorun in the browser. true/false
module.exports = {
port, whitelist, whitelistMode, autorun
};