-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
chore: remove
.env
files from VCS adding samples
- Loading branch information
1 parent
161ebee
commit 2ca04c9
Showing
9 changed files
with
39 additions
and
16 deletions.
There are no files selected for viewing
This file contains 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 |
---|---|---|
|
@@ -43,3 +43,7 @@ Thumbs.db | |
|
||
# Deployment Artifacts | ||
.vercel | ||
|
||
# env files | ||
.env* | ||
!.env.example |
This file was deleted.
Oops, something went wrong.
This file contains 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 |
---|---|---|
@@ -0,0 +1,8 @@ | ||
# The port number that the server will listen to. | ||
PORT=3000 | ||
|
||
# The build mode to use during the build process. | ||
# Possible values: "static", "server" | ||
# - "static": build the app in static mode, which generates static HTML files. | ||
# - "server": build the app in server mode, which runs the app on a Node.js server. | ||
BUILD_MODE='server' |
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,10 @@ | ||
# The port number that the server will listen to. | ||
PORT=3001 | ||
|
||
# This is needed for the build to pass. Else [eslint] Plugin "@typescript-eslint" | ||
# will conflict with @wso2/eslint-plugin and break the build. | ||
DISABLE_ESLINT_PLUGIN=true | ||
|
||
# The subpath of the application as hosted on the web server. | ||
# By default, it's configured to serve the app from the root of a domain. | ||
PUBLIC_URL=/ |
This file was deleted.
Oops, something went wrong.
This file contains 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
This file contains 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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
# The subpath of the storybook static deployment. | ||
# By default, it's configured to serve the app from the root of a domain. | ||
STORYBOOK_BASE_URL='' | ||
|
||
# The Figma PAT for the Storybook Design Plugin's Figspec integration. | ||
# https://storybook.js.org/addons/storybook-addon-designs | ||
STORYBOOK_FIGMA_ACCESS_TOKEN="<YOUR_FIGMA_ACCESS_TOKEN>" |
This file contains 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