-
Notifications
You must be signed in to change notification settings - Fork 928
feat(.devcontainer): add cursor, filebrowser, windsurf and zed #18608
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
Merged
mafredri
merged 4 commits into
main
from
mafredri/feat-devcontainer-add-filebrowser-and-cursor
Jun 26, 2025
Merged
Changes from all commits
Commits
Show all changes
4 commits
Select commit
Hold shift + click to select a range
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 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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,50 @@ | ||
{ | ||
"id": "filebrowser", | ||
"version": "0.0.1", | ||
"name": "File Browser", | ||
"description": "A web-based file browser for your development container", | ||
"options": { | ||
"port": { | ||
"type": "string", | ||
"default": "13339", | ||
"description": "The port to run filebrowser on" | ||
}, | ||
// "folder": { | ||
// "type": "string", | ||
// "default": "${containerWorkspaceFolder}", | ||
// "description": "The root directory for filebrowser to serve" | ||
// }, | ||
"auth": { | ||
"type": "string", | ||
"enum": [ | ||
"none", | ||
"password" | ||
], | ||
"default": "none", | ||
"description": "Authentication method (none or password)" | ||
} | ||
}, | ||
"entrypoint": "/usr/local/bin/filebrowser-entrypoint", | ||
"dependsOn": { | ||
"ghcr.io/devcontainers/features/common-utils:2": {} | ||
}, | ||
"customizations": { | ||
"coder": { | ||
"apps": [ | ||
{ | ||
"slug": "filebrowser", | ||
"displayName": "File Browser", | ||
"url": "http://localhost:${localEnv:FEATURE_FILEBROWSER_OPTION_PORT:13339}", | ||
"icon": "/icon/filebrowser.svg", | ||
"order": 3, | ||
"subdomain": true, | ||
"healthcheck": { | ||
"url": "http://localhost:${localEnv:FEATURE_FILEBROWSER_OPTION_PORT:13339}/health", | ||
"interval": 5, | ||
"threshold": 6 | ||
} | ||
} | ||
] | ||
} | ||
} | ||
} |
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,56 @@ | ||
#!/usr/bin/env bash | ||
|
||
set -euo pipefail | ||
|
||
BOLD='\033[0;1m' | ||
|
||
printf "%sInstalling filebrowser\n\n" "${BOLD}" | ||
|
||
# Check if filebrowser is installed. | ||
if ! command -v filebrowser &>/dev/null; then | ||
curl -fsSL https://raw.githubusercontent.com/filebrowser/get/master/get.sh | bash | ||
fi | ||
|
||
printf "🥳 Installation complete!\n\n" | ||
|
||
# Create run script. | ||
cat >/usr/local/bin/filebrowser-entrypoint <<EOF | ||
#!/bin/bash | ||
printf "🛠️ Configuring filebrowser\n\n" | ||
AUTH="${AUTH}" | ||
PORT="${PORT}" | ||
FOLDER="$(pwd)" | ||
LOG_PATH=/tmp/filebrowser.log | ||
export FB_DATABASE="/tmp/filebrowser.db" | ||
# Check if filebrowser db exists. | ||
if [[ ! -f "\${FB_DATABASE}" ]]; then | ||
filebrowser config init | ||
if [[ "\$AUTH" == "password" ]]; then | ||
filebrowser users add admin admin --perm.admin=true --viewMode=mosaic | ||
fi | ||
fi | ||
# Configure filebrowser. | ||
if [[ "\$AUTH" == "none" ]]; then | ||
filebrowser config set --port="\${PORT}" --auth.method=noauth --root="\${FOLDER}" | ||
else | ||
filebrowser config set --port="\${PORT}" --auth.method=json --root="\${FOLDER}" | ||
fi | ||
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. Also not working, still prompts login even if commented out and always using noauth. |
||
set -euo pipefail | ||
printf "👷 Starting filebrowser...\n\n" | ||
printf "📂 Serving \${FOLDER} at http://localhost:\${PORT}\n\n" | ||
filebrowser >>\${LOG_PATH} 2>&1 & | ||
printf "📝 Logs at \${LOG_PATH}\n\n" | ||
EOF | ||
|
||
chmod +x /usr/local/bin/filebrowser-entrypoint | ||
|
||
printf "✅ File Browser installed!\n\n" | ||
printf "🚀 Run 'filebrowser-entrypoint' to start the service\n\n" |
Oops, something went wrong.
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.
Review: Couldn't get this working.