Skip to content

Commit 19affa2

Browse files
committed
chore: update environment template files to include additional comments for clarity
1 parent a07f6b9 commit 19affa2

4 files changed

Lines changed: 7 additions & 0 deletions

File tree

adminforth/commands/createApp/.env.hbs

Whitespace-only changes.
Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
{{!-- Add only sensitive local environment variables here, non-sensitive local variables should go to .env.local --}}

adminforth/commands/createApp/templates/.env.local.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
{{!-- Add only non-sensitive local environment variables here so all team members can use them with minimal setup --}}
2+
{{!-- For sensitive local environment variables, use .env and explain team members how to set them (ideally also provide .env.example ) --}}
3+
14
ADMINFORTH_SECRET=123
25
NODE_ENV=development
36
DEBUG_LEVEL=info

adminforth/commands/createApp/templates/.env.prod.hbs

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
{{!-- Add only non-sensitive prod environment variables here so deployed applications can use them --}}
2+
{{!-- Deliver sensitive prod environment variables via natural process environments from your deployment platform --}}
3+
14
NODE_ENV=production
25
DATABASE_URL={{dbUrlProd}}
36
{{#if prismaDbUrlProd}}

0 commit comments

Comments
 (0)