From f7d9e5af01b4d632a6fbcca0f9fc97124d5c8171 Mon Sep 17 00:00:00 2001 From: Naitik Kapadia <88614335+KapadiaNaitik@users.noreply.github.com> Date: Tue, 16 May 2023 22:26:57 +0530 Subject: [PATCH] Create .gitpod.yml --- .gitpod.yml | 23 +++++++++++++++++++++++ 1 file changed, 23 insertions(+) create mode 100644 .gitpod.yml diff --git a/.gitpod.yml b/.gitpod.yml new file mode 100644 index 000000000..9f7519a2a --- /dev/null +++ b/.gitpod.yml @@ -0,0 +1,23 @@ +# This configuration file was manually created by KapadiaNaitik. +# Please adjust to your needs (see https://www.gitpod.io/docs/introduction/learn-gitpod/gitpod-yaml) +# and commit this file to your remote git repository to share the goodness with others. + +# Learn more from ready-to-use templates: https://www.gitpod.io/docs/introduction/getting-started/quickstart +tasks: + - name: Configure .env & Start the server + init: chmod +x setup-env.sh + command: ./setup-env.sh && pnpm install && pnpm run dev +ports: + - port: 3000 + onOpen: open-preview + name: Vercel Commerce + +github: + prebuilds: + master: true + branches: true + pullRequests: true + pullRequestsFromForks: true + addCheck: true + addComment: true + addBadge: true