From fe08fdd7bbb72f3d423af06313ff121ab9a88d57 Mon Sep 17 00:00:00 2001 From: "Thomas A. Christensen II" <25492070+MillironX@users.noreply.github.com> Date: Fri, 24 Mar 2023 15:53:35 +0000 Subject: [PATCH] Create .gitpod.yml --- .gitpod.yml | 10 ++++++++++ 1 file changed, 10 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 0000000..6e15b28 --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,10 @@ +# List the start up tasks. Learn more https://www.gitpod.io/docs/config-start-tasks/ +tasks: + - name: Install Hugo dependencies + before: brew install hugo + init: echo "Your version of Hugo is `hugo version`" + command: npm ci && hugo server -D -F --baseUrl $(gp url 1313) --liveReloadPort=443 --appendPort=false --bind=0.0.0.0 +# List the ports to expose. Learn more https://www.gitpod.io/docs/config-ports/ +ports: + - port: 1313 + onOpen: open-preview