-
Notifications
You must be signed in to change notification settings - Fork 3
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
fix: enable deployment on rdev (#299)
* Add symlink * Update env config * Update health check path * Add temporary workarounds and warnings * Workaround missing s3 bucket * add request logging * Repair explorer rdev * Remove unused config file * Cleanup * Clean up * Lint * Reorder dockerfile to take advantage of caching * Remove unnecessary installations * Ignore node_modules in docker image to save space * Fix cache-from tag in Docker * fix conflicts * Reorder Dockerfile for caching Co-authored-by: Trent Smith <[email protected]> Co-authored-by: Emanuele Bezzi <[email protected]>
- Loading branch information
1 parent
aa4beab
commit 10fe915
Showing
8 changed files
with
27 additions
and
20 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,5 @@ | ||
bin | ||
dist | ||
docs | ||
/server/eb/customize | ||
/server/eb/customize | ||
/client/node_modules |
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 |
---|---|---|
|
@@ -36,5 +36,8 @@ | |
"log_group_prefix": "/explorer/prod" | ||
} | ||
}, | ||
"tasks": {} | ||
"tasks": { | ||
"migrate": [], | ||
"delete": [] | ||
} | ||
} |
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 @@ | ||
../../modules |
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 @@ | ||
output explorer_url { | ||
value = module.stack.explorer_url | ||
output frontend_url { | ||
value = module.stack.frontend_url | ||
description = "The URL endpoint for the website service" | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -152,5 +152,4 @@ def discover_s3_region_name(uri): | |
return region | ||
else: | ||
return None | ||
|
||
return None |