-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* clean up env example files * use createTheme from widget * display price * Design improvements * Some more minor design improvements * Fixed the products grid * Removed test data * Product grid improvements * Grid fix --------- Co-authored-by: Mikk <[email protected]>
- Loading branch information
1 parent
a5cea92
commit 05d0060
Showing
11 changed files
with
190 additions
and
242 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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
STRIPE_SECRET_KEY= | ||
INTERNAL_API_KEY=my-secret-key | ||
QUEUE_DASHBOARD_USER=user | ||
QUEUE_DASHBOARD_PASSWORD=password | ||
# If you're doing local development then you might prefer to use .env files in /backend and /frontend |
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 |
---|---|---|
@@ -1,10 +1,10 @@ | ||
STRIPE_SECRET_KEY= | ||
STRIPE_TEST_MODE=true # setting this true will create an example project on Stripe first time | ||
REDIS_HOST=localhost | ||
REDIS_PORT=6379 | ||
REDIS_USER= | ||
REDIS_PASSWORD= | ||
QUEUE_DASHBOARD_USER=user | ||
QUEUE_DASHBOARD_PASSWORD=password | ||
INTERNAL_API_KEY= | ||
STRIPE_SECRET_KEY= | ||
STRIPE_TEST_MODE=true | ||
PORT=3001 | ||
REDIS_USER= # optional for local development | ||
REDIS_PASSWORD= # optional for local development | ||
PORT=3001 # optional, will default to 3001 | ||
QUEUE_DASHBOARD_USER=user # optional, will default to STRIPE_SECRET_KEY | ||
QUEUE_DASHBOARD_PASSWORD=password # optional, if not specified, use STRIPE_SECRET_KEY for username and leave password empty | ||
INTERNAL_API_KEY=my-secret-key # optional, if not specified, use STRIPE_SECRET_KEY |
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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
NEXT_PUBLIC_WALLECT_CONNECT_PROJECT_ID=952483bf7a0f5ace4c40eb53967f1368 | ||
BACKEND_PROTOCOL=http | ||
BACKEND_HOST=localhost | ||
BACKEND_PORT=3001 | ||
INTERNAL_API_KEY=my-secret-key | ||
BACKEND_PROTOCOL=http # optional | ||
BACKEND_PORT=3001 # optional | ||
NEXT_PUBLIC_WALLECT_CONNECT_PROJECT_ID=952483bf7a0f5ace4c40eb53967f1368 # optional, but strongly recommended, will default to WalletConnect v1 otherwise | ||
INTERNAL_API_KEY=my-secret-key # optional, will fallback to STRIPE_SECRET_KEY | ||
STRIPE_SECRET_KEY= # optional |
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
Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.
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
Oops, something went wrong.