-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
[MS-670] feat: Improve app extensibility (#45)
* [MS-670] feat: Improve apps extensibility * [MS-670] feat: Fix tests * [MS-670] feat: Clean templates props types * [MS-670] feat: Type fix
- Loading branch information
1 parent
2147558
commit 1a54d2e
Showing
30 changed files
with
300 additions
and
142 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 |
---|---|---|
@@ -1,4 +1,4 @@ | ||
# Saleor domain when you want to install the app. It will be used to verify JWT tokens. | ||
# Saleor domain where do you want to install the app. It will be used to verify JWT tokens. | ||
SALEOR_URL=https://your.eu.saleor.cloud | ||
# Where your email assets are stored | ||
STATIC_URL=https://your.cdn/ | ||
|
@@ -8,7 +8,7 @@ STOREFRONT_URL=https://your.storefront.com | |
# Email from which email will be sent | ||
FROM_EMAIL=[email protected] | ||
# Name from which email will be sent | ||
FROM_NAME= | ||
FROM_NAME=Mirumee | ||
|
||
# AWS SQS queue url | ||
SQS_QUEUE_URL=http://host.docker.internal:4566/000000000000/nimara-mailer-queue | ||
|
@@ -21,8 +21,8 @@ AWS_REGION=ap-southeast-1 | |
AWS_ACCESS_KEY_ID= | ||
AWS_SECRET_ACCESS_KEY= | ||
|
||
# One of: NODE_MAILER, AWS_SES | ||
EMAIL_PROVIDER=AWS_SES | ||
# One of: AWS_SES, NODE_MAILER | ||
EMAIL_PROVIDER=NODE_MAILER | ||
|
||
# Localstack only. When using AWS please comment this out | ||
FROM_DOMAIN=mirumee.com | ||
|
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 |
---|---|---|
|
@@ -11,8 +11,7 @@ coverage | |
# out files | ||
.next/ | ||
out/ | ||
build/* | ||
package* | ||
build/ | ||
dist/ | ||
vite.config.js.timestamp* | ||
*.zip | ||
|
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
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
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
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.