Skip to content

Commit

Permalink
fix(nuxt3): starnexus.config.json
Browse files Browse the repository at this point in the history
  • Loading branch information
LarchLiu committed May 29, 2023
1 parent 7769b25 commit 053ed12
Show file tree
Hide file tree
Showing 2 changed files with 67 additions and 2 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -47,5 +47,3 @@ yarn-error.log*
.nitro

wrangler.toml

starnexus.config.json
67 changes: 67 additions & 0 deletions server/nuxt3/starnexus.config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,67 @@
{
"app": {
"select": "telegram",
"config": {
"botToken": ""
}
},
"webInfo": {
"select": "api",
"config": {
"starNexusHub": "https://star-nexus.netlify.app"
},
"fn": "WebInfoByApi",
"import": "import { WebInfoByApi } from '@starnexus/core/webInfo'\n"
},
"webCard": {
"select": "api",
"config": {
"starNexusHub": "https://star-nexus.netlify.app"
},
"fn": "WebCardByApi",
"import": "import { WebCardByApi } from '@starnexus/core/webCard'\n"
},
"llm": {
"select": "openai",
"config": {
"apiKey": "",
"apiHost": "https://api.openai.com",
"lang": "en"
},
"fn": "OpenaiSummarizeContent",
"import": "import { OpenaiSummarizeContent } from '@starnexus/core/openai'\n"
},
"imgStorage": {
"select": "supabase",
"config": {
"url": "",
"bucket": "",
"anonKey": ""
},
"fn": "SupabaseImageStorage",
"import": "import { SupabaseImageStorage } from '@starnexus/core/storage/supabase'\n"
},
"dataStorage": {
"select": "notion",
"config": {
"apiKey": "",
"databaseId": "",
"defaultOgImage": "https://kiafhufrshqyrvlpsdqg.supabase.co/storage/v1/object/public/pics-bed/star-nexus.png?v=starnexusogimage"
},
"fn": "NotionDataStorage",
"import": "import { NotionDataStorage } from '@starnexus/core/storage/notion'\n"
},
"kvStorage": {
"select": "vercelKV",
"config": {
"KV_URL": "",
"KV_REST_API_TOKEN": ""
}
},
"server": {
"select": "netlifyEdge",
"config": {
"token": ""
}
}
}

1 comment on commit 053ed12

@vercel
Copy link

@vercel vercel bot commented on 053ed12 May 29, 2023

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Successfully deployed to the following URLs:

star-nexus – ./

star-nexus-git-main-larchliu.vercel.app
star-nexus-larchliu.vercel.app
star-nexus.vercel.app

Please sign in to comment.