Created
May 9, 2021 16:36
-
-
Save ayanchoudhary/a5169feb55f172ef66fa2ea7daed25c9 to your computer and use it in GitHub Desktop.
config
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
| const dropboxApiKey = "YOUR-DROPBOX-API-KEY"; | |
| const dropboxApiSecret = "YOUR-DROPBOX-SECRET"; | |
| const publicUrl = "http://localhost:8000"; | |
| try { | |
| if (module) { | |
| module.exports = { | |
| dropboxApiKey: dropboxApiKey, | |
| dropboxApiSecret: dropboxApiSecret, | |
| publicUrl: publicUrl, | |
| }; | |
| } | |
| } catch (err) { | |
| console.log(err); | |
| } |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment