Create pgweb app #329
Merged
Merged
Conversation
june-hua
approved these changes
Feb 27, 2026
| @@ -0,0 +1,165 @@ | |||
| #!/bin/bash | |||
| set -o errexit | |||
| set -o pipefail | |||
yuhuyoyo
reviewed
Mar 2, 2026
| "postStartCommand": "/workspace/start-bookmark-refresh.sh", | ||
| "features": { | ||
| "ghcr.io/devcontainers/features/common-utils:2": { | ||
| "installZsh": false, |
Contributor
There was a problem hiding this comment.
add some comments for why these are disabled?
|
|
||
| ## Automatic Database Discovery | ||
|
|
||
| The app automatically discovers all Aurora databases in your Workbench workspace and creates pre-configured connection bookmarks with fresh IAM authentication tokens. |
Contributor
There was a problem hiding this comment.
nit: add a link to the original github wiki https://github.com/sosedoff/pgweb/wiki/Server-Connection-Bookmarks for a little more context about this app.
| echo "Starting bookmark refresh for pgweb..." | ||
|
|
||
| # Create base directory (but not bookmarks subdirectory - that will be a symlink) | ||
| mkdir -p /root/.pgweb |
Contributor
There was a problem hiding this comment.
nit: we set PGWEB_BASE in the other one but not this one. but it doesn't look like we are override WB_EXE and PGWEB_BASE anyway. maybe just keep them as readonly const to be consistent.
Merged
pantherman594
added a commit
that referenced
this pull request
Mar 3, 2026
Addresses feedback left on #329 Also downgrades to pgweb user and shows a disabled prompt when attempting to access an aurora database in another region <img width="1856" height="1681" alt="image" src="https://github.com/user-attachments/assets/41b15d55-d570-45a6-89e0-e2cb3b5dbfea" />
PeterSu92
pushed a commit
that referenced
this pull request
May 21, 2026
* Add pgweb app. * Add bookmarks for workspace database instances. * fixup * fixup * fixup * fixup * fixup * fixup * fixup * fixup * fixup * fixup * fixup * doc update * fixup * Clean up shellcheck disables * nounset --------- Co-authored-by: github-actions <github-actions@github.com>
PeterSu92
pushed a commit
that referenced
this pull request
May 21, 2026
Addresses feedback left on #329 Also downgrades to pgweb user and shows a disabled prompt when attempting to access an aurora database in another region <img width="1856" height="1681" alt="image" src="https://github.com/user-attachments/assets/41b15d55-d570-45a6-89e0-e2cb3b5dbfea" />
This file contains hidden or 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
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
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.
Creates a pgweb app for exploring aurora databases in workbench
PHP-124828