-
Notifications
You must be signed in to change notification settings - Fork 10
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
fix(com-pwa): reported issue and deploy canary and beta #1104
Merged
Merged
Changes from 13 commits
Commits
Show all changes
16 commits
Select commit
Hold shift + click to select a range
2f80fdb
fix(com-pwa): button width
njfamirm a3e058e
chore(cloud/com-pwa): develop env
njfamirm 94d12f3
fix(com-pwa): routeId
njfamirm 4f6f9e0
fix(com-api): import route
njfamirm 4530d98
feat(com-api): set user info in user-list patch
njfamirm 21742c7
fix(container/nginx-pwa): create tmp file and move them
njfamirm b046826
fix(container/nginx-pwa): config js envsubst
njfamirm e1ac5e1
fix(com-pwa/sign-in): add /user to url
njfamirm 1d926e3
fix(com-pwa): routeId
njfamirm 44917d8
fix(com-pwa/order): reload button content
njfamirm bfa1086
fix(com-pwa/context-provider): path
njfamirm 08a741e
fix(com-api): remove require token
njfamirm 9356171
fix(com-pwa): final price storage
njfamirm ce4723b
fix(nginx-pwa): override file
njfamirm eccedae
chore(com-pwa): pass env
njfamirm 310b0d3
feat(com): add beta and canary
alimd File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
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,16 @@ | ||
U2FsdGVkX1+wcTEudbN0P+aFNemIKqVaqm2eAcegDJN+FO68CxjuqW4ozEn5YF7A | ||
03wVjR1IUkvys9YzE+o0OV+LdXUunGG/Cpe7PNi8tHXZeAWmndm3z5NdvJnjjusp | ||
/DEXMgadKKcpUeclg98lhNXTKX0AlFOcTUTYm+P2GTG7Z98WCSEtJM2dkl27tjtz | ||
p+a4XhOMu2ovDSBpWVRoyTT/8got8x5W0hp+IimJTkef0SgMfiTLlc4X0NZ54x9l | ||
b5t48mA7DEH1SRBqZkYrx38peMb3ogX/iHcc7UpwUr7SKz5e1k6MaDJFScY0yXhC | ||
2zc89TenJwCNxSAQ5YtEx5I+QX2ALTt9+glKbdq8MMT/zoudc7rC6C2+A311Q2MV | ||
lccNuW8hdFxN//WLn19K3vmbnwFC6rRBf1YcxV7X8Jka3te7mqazhunfn7aUilW5 | ||
x8UgojvD7kHt/LeRB8q9WxvyFXijY2PA/64DyI99/sx7kN0JUZ6IS8X9LPXAcTSe | ||
pXuEadbiPDxXhoLhH6R8BUWhQhMOIX9gw+1ZheEaT/oMR/zNLdxRags6DrmfKG14 | ||
YQwWSLzGAwLuvXwWSN0iZOufx7J8z79Aw2tNGWZ+6WEragityETt6BquQgu1uk06 | ||
w5QFWEpItDjmFJYSC0ypua61krG4yV5/6wnXa4Fib73AJgBaSt+YCd1SJhje+msw | ||
/PynqXA72HbnH1yQyIQnom9X48uq/rK5pEA5RDAHzydv30isMtwNtUfStzNavTkS | ||
Kd1M0sgPclCq1UOR9WuIdwUJzNC93WAGBsXljfl7ef7Ht1754Bx1V1YZEvaExh2T | ||
RNMEbnnPlOunASnlqQHgTR9mGnadT/UT10FVhQ+iZ9IL58Yf2nsyFtLjgPAkMUkc | ||
ysC3q5/F0x1vO2r0mUDYl0SHn2C+H6n/fFarUUu3JWI1OLkpqdw3A6xIIiqV7S6l | ||
WqXMs4DwwWa9Ji8lhmV3av7U7QQSpaiqCmT2ZXIawBRTMzzaWgizZc2XgBojmenO |
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 |
---|---|---|
|
@@ -15,7 +15,8 @@ config_js_envsubst() { | |
return 0 | ||
fi | ||
echo >&3 "$ME: Running envsubst on $config_js_path" | ||
envsubst "$defined_envs" < "$config_js_path" > "$config_js_path" | ||
envsubst "$defined_envs" < "$config_js_path" > "$config_js_path.tmp" | ||
mv "$config_js_path.tmp" "$config_js_path" | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. -f |
||
} | ||
|
||
config_js_envsubst | ||
|
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
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
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
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.
${}