-
Notifications
You must be signed in to change notification settings - Fork 0
Move PHOTO-TEXTE to Cloudflare and refine bilingual workflow #33
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
Open
mani1261790
wants to merge
11
commits into
main
Choose a base branch
from
dev
base: main
Could not load branches
Branch not found: {{ refName }}
Loading
Could not load tags
Nothing to show
Loading
Are you sure you want to change the base?
Some commits from the old base branch may be removed from the timeline,
and old review comments may become outdated.
Open
Changes from 4 commits
Commits
Show all changes
11 commits
Select commit
Hold shift + click to select a range
dfad837
Revamp bilingual editor and add PDF export
mani1261790 37195c7
Migrate application runtime to Cloudflare
mani1261790 d1da90e
Handle orphaned storage records during migration
mani1261790 eda6063
Add isolated Cloudflare dev environment
mani1261790 9edbbaa
Automate Cloudflare dev deployments
mani1261790 8112af8
Polish branding and align Cloudflare environments
mani1261790 5a6fe36
Harden Cloudflare deployment and AI requests
mani1261790 a3d2577
Streamline entry creation and annotation flow
mani1261790 2c40d41
Refine annotation and submission steps
mani1261790 f40da9e
Polish six-step editor indicators
mani1261790 c905114
Optimize mobile workspace layouts
mani1261790 File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,9 +1,15 @@ | ||
| NEXT_PUBLIC_SUPABASE_URL= | ||
| NEXT_PUBLIC_SUPABASE_ANON_KEY= | ||
| SUPABASE_SERVICE_ROLE_KEY= | ||
| CRON_SECRET= | ||
| APP_MASTER_KEY_B64= | ||
| OPENAI_API_KEY= | ||
| OPENAI_MODEL=gpt-4o-mini | ||
| BETTER_AUTH_SECRET= | ||
| BETTER_AUTH_URL= | ||
| STORAGE_SIGNING_SECRET= | ||
| PHOTO_BUCKET=photos | ||
| EXPORT_BUCKET=exports | ||
|
|
||
| # Supabase migration and temporary first-login bridge only. | ||
| NEXT_PUBLIC_SUPABASE_URL= | ||
| NEXT_PUBLIC_SUPABASE_ANON_KEY= | ||
| SUPABASE_SERVICE_ROLE_KEY= | ||
| LEGACY_SUPABASE_URL= | ||
| LEGACY_SUPABASE_ANON_KEY= | ||
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
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -1,4 +1,7 @@ | ||
| .next | ||
| .open-next | ||
| .wrangler | ||
| worker-configuration.d.ts | ||
| node_modules | ||
| .env | ||
| .env.local | ||
|
|
||
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
📐 Maintainability & Code Quality | 🟡 Minor | ⚡ Quick win
Restore the dotenv-linter key order.
The supplied dotenv-linter report flags the new keys as unordered. Sort the keys to keep the environment-template lint check clean.
🧰 Tools
🪛 dotenv-linter (4.0.0)
[warning] 4-4: [UnorderedKey] The BETTER_AUTH_SECRET key should go before the OPENAI_API_KEY key
(UnorderedKey)
[warning] 5-5: [UnorderedKey] The BETTER_AUTH_URL key should go before the OPENAI_API_KEY key
(UnorderedKey)
[warning] 7-7: [UnorderedKey] The PHOTO_BUCKET key should go before the STORAGE_SIGNING_SECRET key
(UnorderedKey)
[warning] 8-8: [UnorderedKey] The EXPORT_BUCKET key should go before the OPENAI_API_KEY key
(UnorderedKey)
[warning] 12-12: [UnorderedKey] The NEXT_PUBLIC_SUPABASE_ANON_KEY key should go before the NEXT_PUBLIC_SUPABASE_URL key
(UnorderedKey)
[warning] 14-14: [UnorderedKey] The LEGACY_SUPABASE_URL key should go before the NEXT_PUBLIC_SUPABASE_ANON_KEY key
(UnorderedKey)
[warning] 15-15: [UnorderedKey] The LEGACY_SUPABASE_ANON_KEY key should go before the LEGACY_SUPABASE_URL key
(UnorderedKey)
🤖 Prompt for AI Agents
Source: Linters/SAST tools