2024-04-19 20:53:32 +02:00
|
|
|
# Source: https://github.com/gitpod-io/template-hugo/blob/main/.gitpod.yml
|
2023-04-18 15:10:33 +02:00
|
|
|
|
2024-04-19 20:53:32 +02:00
|
|
|
# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/
|
2023-04-18 15:10:33 +02:00
|
|
|
tasks:
|
2024-04-19 20:53:32 +02:00
|
|
|
- name: Run start up tasks
|
|
|
|
before: brew install hugo
|
|
|
|
init: pnpm install
|
|
|
|
command: hugo server --baseURL $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0 --disableFastRender --noHTTPCache --navigateToChanged
|
2023-04-18 15:10:33 +02:00
|
|
|
|
2024-04-19 20:53:32 +02:00
|
|
|
# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/
|
2023-04-18 15:10:33 +02:00
|
|
|
ports:
|
2024-04-19 20:53:32 +02:00
|
|
|
- port: 1313
|
|
|
|
onOpen: open-preview
|