From 00ad80380ad5622dd21a5744b062db9f24915baa Mon Sep 17 00:00:00 2001 From: Kevin Backhouse Date: Fri, 6 Feb 2026 12:10:25 +0000 Subject: [PATCH] Open README.md in the editor after creating a codespace. --- .devcontainer/post-attach.sh | 1 + 1 file changed, 1 insertion(+) diff --git a/.devcontainer/post-attach.sh b/.devcontainer/post-attach.sh index 47fdcde..c64bcd2 100644 --- a/.devcontainer/post-attach.sh +++ b/.devcontainer/post-attach.sh @@ -17,6 +17,7 @@ if [ ! -f .env ]; then echo "📝 Creating .env template..." cp .devcontainer/env-default .env || { echo "Error creating .env"; exit 1; } code .env || echo "â„šī¸ Unable to open .env in VS Code. Please open and review the .env file manually." + code README.md echo "âš ī¸ Defaults can be changed by editing the auto-generated .env file." fi