Created
October 17, 2017 18:08
-
-
Save jeff-kilbride/ac618985840c4ef46aaa6f8ebe5aa4d2 to your computer and use it in GitHub Desktop.
Plugin config file
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
'use strict'; | |
module.exports = { | |
host: process.env.API_HOST, | |
keys: { | |
private: process.env.API_KEY | |
}, | |
endpoints: [ | |
['admin.alive', '/admin/alive'], | |
['admin.impersonate', '/ap/impersonate'], | |
// ... Lots of other endpoints | |
], | |
cache: { | |
clearPass: process.env.CACHE_PASSWORD, | |
basePath: '/admin/cache/clear/key', | |
path: { | |
video: 'Video', | |
videoList: 'VideoList', | |
videoCount: 'VideoCount', | |
packageSite: 'PackageSite' | |
} | |
} | |
}; |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment