Last active
December 14, 2020 22:05
-
-
Save K-Mistele/4e04510bd9113dd11222edb404949162 to your computer and use it in GitHub Desktop.
Configuring CodeLighthouse's Node.js SDK
This file contains 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
// IMPORT CODELIGHTHOUSE | |
const CodeLighthouse = require('codelighthouse'); | |
// INSTANTIATE THE ERROR CATCHER | |
const codelighthouse = new CodeLighthouse( | |
organization_name="your organization name", | |
api_key="your API Key", | |
default_email="code owner's email address" | |
resource_group="serverless-applications", | |
resource_name="notifications-app" | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment