Skip to content

Commit

Permalink
feat: added stripe to confog
Browse files Browse the repository at this point in the history
  • Loading branch information
frankpagan committed Nov 28, 2023
1 parent 5b94292 commit 7f60760
Showing 1 changed file with 17 additions and 6 deletions.
23 changes: 17 additions & 6 deletions CoCreate.config.js
Original file line number Diff line number Diff line change
@@ -1,11 +1,17 @@
module.exports = {
"organization_id": "",
"key": "",
"host": "",
organization_id: "",
key: "",
host: "",
workers: 1, // Number of worker processes

"lazyload": {
openaii: {
databases: {
mongodb: require('@cocreate/mongodb')
},
modules: {
'file-server': {
path: "@cocreate/file-server",
unload: false // true, false, number in milli seconds to wait before unloading
},
openai: {
event: "openai",
path: "@cocreate/openai",
unload: "10000" // true, false, number in milli seconds to wait before unloading
Expand All @@ -17,6 +23,11 @@ module.exports = {
pathname: "/dist/industry-chunk.js",
},
unload: "10000" // true, false, number in milli seconds to wait before unloading
},
stripe: {
event: "stripe",
path: "@cocreate/stripe",
unload: "10000"
}
},

Expand Down

0 comments on commit 7f60760

Please sign in to comment.