Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

feat: improve error logging in setup remote #492

Merged
merged 2 commits into from
Apr 1, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions src/features.ts
Original file line number Diff line number Diff line change
Expand Up @@ -329,6 +329,7 @@ export async function setupRemote(_nuxt: Nuxt, hub: HubConfig) {
authorization: `Bearer ${hub.userToken}`
}
}).catch((err) => {
log.debug(err)
if (!err.status) {
log.error('It seems that you are offline.')
} else if (err.status === 401) {
Expand Down Expand Up @@ -390,11 +391,16 @@ export async function setupRemote(_nuxt: Nuxt, hub: HubConfig) {
}
})
.catch(async (err) => {
log.debug(err)
let message = 'Project not found.\nMake sure to deploy the project using `npx nuxthub deploy` or add the deployed URL as `NUXT_HUB_PROJECT_URL` environment variable.'
if (err.status >= 500) {
message = 'Internal server error'
} else if (err.status === 401) {
message = 'Authorization failed.\nMake sure to provide a valid NUXT_HUB_PROJECT_SECRET_KEY or being logged in with `npx nuxthub login`'

if (hub.cloudflareAccess.clientId && hub.cloudflareAccess.clientSecret) {
message += ', and ensure the provided NUXT_HUB_CLOUDFLARE_ACCESS_CLIENT_ID and NUXT_HUB_CLOUDFLARE_ACCESS_CLIENT_SECRET are valid.'
}
}
log.error(`Failed to fetch remote storage: ${message}`)
process.exit(1)
Expand Down