-
Notifications
You must be signed in to change notification settings - Fork 54
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
🔧 Remove .env.development file #953
Conversation
|
The latest updates on your projects. Learn more about Vercel for Git ↗︎
4 Skipped Deployments
|
Updates to Preview Branch (clean/delete-env-development) ↗︎
Tasks are run on every commit but only new migration files are pushed.
View logs for this Workflow Run ↗︎. |
PR Reviewer Guide 🔍Here are some key observations to aid the review process:
|
PR Code Suggestions ✨Explore these optional code suggestions:
|
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.
LGTM!
FLAGS_SECRET="" | ||
GITHUB_APP_ID="" | ||
GITHUB_CLIENT_ID="" | ||
GITHUB_CLIENT_SECRET="" | ||
GITHUB_PRIVATE_KEY="" | ||
MIGRATION_ENABLED="" | ||
NEXT_PUBLIC_BASE_URL="" | ||
NEXT_PUBLIC_ENV_NAME="" | ||
NEXT_PUBLIC_GITHUB_APP_URL="" | ||
NEXT_PUBLIC_SUPABASE_ANON_KEY="" | ||
NEXT_PUBLIC_SUPABASE_URL="" | ||
OPENAI_API_KEY="" | ||
POSTGRES_URL="" | ||
POSTGRES_URL_NON_POOLING="" | ||
SENTRY_AUTH_TOKEN="" | ||
SENTRY_DSN="" | ||
SENTRY_ORG="" | ||
SENTRY_PROJECT="" | ||
TRIGGER_PROJECT_ID="" | ||
TRIGGER_SECRET_KEY="" |
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.
📝
The additions seem to be just right.
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.
👍🏻
Could you edit CONTRIBUTING.md, if necessary? Good to be handled in a separate PR.
https://github.com/liam-hq/liam/blob/e87862695b8c0cf097cfa35d254a6331d16a5ef4/CONTRIBUTING.md
Issue
Why is this change needed?
The environment variables that were managed in
.env.development
are now set when runningpnpm vercel:env-pull
, so the file is no longer needed.What would you like reviewers to focus on?
Testing Verification
pnpm vercel:env-pull
TRIGGER_SECRET_KEY
,OPENAI_API_KEY
pnpm -F app trigger:dev
,pnpm -F app dev
What was done
🤖 Generated by PR Agent at c89f2c2
.env.development
file as it is no longer needed..env.template
file for environment variable configuration.pnpm vercel:env-pull
.Detailed Changes
.env.template
Added `.env.template` for environment variables
.env.template
.env.template
file..env.development
Removed `.env.development` file
frontend/apps/app/.env.development
.env.development
file.Additional Notes