-
Notifications
You must be signed in to change notification settings - Fork 0
仮完成 #27
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
仮完成 #27
Changes from all commits
7340d87
9431c40
8f85a79
f2384a4
5c666e2
676b926
3011c21
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,5 +1,8 @@ | ||
| DATABASE_URL= | ||
| DATABASE_CREDENTIALS_SSL_REJECT_UNAUTHORIZED= | ||
| BETTER_AUTH_URL= | ||
| BETTER_AUTH_SECRET= | ||
| DISCORD_CLIENT_ID= | ||
| DISCORD_CLIENT_SECRET= | ||
| GOOGLE_CLIENT_ID= | ||
| GOOGLE_CLIENT_SECRET= |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1 +1,3 @@ | ||
| export * from './auth-schema'; | ||
| export * from './pay-crew2-schema'; | ||
| export * from './relation'; |
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -14,7 +14,7 @@ const honoFactory = () => { | |
| if (!result.success) { | ||
| console.error(result.error); | ||
| throw new HTTPException(400, { | ||
| message: 'Zod Validation Error', | ||
| message: 'Bad Request', | ||
|
||
| }); | ||
| } | ||
| }, | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Missing environment variable VITE_CLIENT_URL. The diff shows VITE_CLIENT_URL being added to various configuration files (setup/src/types.ts, products/frontend/.env.example, GitHub workflows), but it's missing from the root .env.example file. This variable should be added after VITE_API_URL for consistency.