Skip to content

Add website preview for all pull requests with GitHub Codespaces integration #1033

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
merged 7 commits into from
May 21, 2025
Merged
Show file tree
Hide file tree
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix Hugo execution in Codespaces
Co-authored-by: yuhattor <[email protected]>
  • Loading branch information
Copilot and yuhattor committed May 20, 2025
commit 7e6b92d7ce7d1ff389f4ba958d5051ad13e6685c
2 changes: 1 addition & 1 deletion .devcontainer/devcontainer.json
Original file line number Diff line number Diff line change
Expand Up @@ -21,5 +21,5 @@
},
"forwardPorts": [1313],
"remoteUser": "root",
"postCreateCommand": "echo 'Hugo server ready to run! Use the Run and Debug view to start the server.'"
"postCreateCommand": "which hugo && hugo version && echo 'Hugo server ready to run! Use the Run and Debug view to start the server.'"
}
6 changes: 3 additions & 3 deletions .vscode/launch.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,10 @@
"configurations": [
{
"name": "Hugo Server",
"type": "node",
"type": "shell",
"request": "launch",
"runtimeExecutable": "hugo",
"runtimeArgs": [
"command": "hugo",
"args": [
"server",
"--appendPort=false",
"--baseURL=/",
Expand Down