diff --git a/.eslintrc.json b/.eslintrc.json index 157265e..0b63480 100644 --- a/.eslintrc.json +++ b/.eslintrc.json @@ -5,6 +5,7 @@ "sourceType": "module" }, "extends": ["eslint-config-airbnb-base", "plugin:prettier/recommended"], + "plugins": ["mocha"], "rules": { "max-classes-per-file": 1, "no-empty": [ @@ -16,5 +17,8 @@ "no-promise-executor-return": 1, "no-shadow": "off", "no-underscore-dangle": "off" + }, + "env": { + "mocha": true } } diff --git a/.gitignore b/.gitignore index 45073a4..2e19d0e 100644 --- a/.gitignore +++ b/.gitignore @@ -1,8 +1,11 @@ .DS_Store -development.json +configurations/development.json +configurations/production.json .env shows.db node_modules */package-lock.json +.nyc_output +yarn-error.log diff --git a/configurations/production.json b/configurations/production.json deleted file mode 100644 index 017f9dd..0000000 --- a/configurations/production.json +++ /dev/null @@ -1,31 +0,0 @@ -{ - "database": { - "host": "/Users/kevin/dev/seasonedShows/shows.db" - }, - "webserver": { - "port": 31459, - "origins": ["https://kevinmidboe.com", "https://seasoned.show", "https://request.movie"] - }, - "tmdb": { - "apiKey": "9fa154f5355c37a1b9b57ac06e7d6712" - }, - "plex": { - "ip": "blex.schleppe" - }, - "tautulli": { - "apiKey": "4e759f7acabf4f1a8893825e6acd522b", - "ip": "blex.schleppe", - "port": "8181" - }, - "raven": { - "DSN": "" - }, - "authentication": { - "secret": "secret" - }, - "sms": { - "apikey": "qK48YChORZOX4FqAwgzdOrfYT2-bixwshtRe-BogNksBZyUrMHLTh0-XOjsxziPV", - "sender": "Seasoned", - "recipient": 41498549 - } -}