From 59bc2dd8a7337a12680d7ad1aab5411bc800b5ef Mon Sep 17 00:00:00 2001 From: Andras Bacsai Date: Tue, 12 Jul 2022 08:56:32 +0200 Subject: [PATCH] fix: gitpod updates --- .gitpod.yml | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/.gitpod.yml b/.gitpod.yml index ea449728d..13232c598 100644 --- a/.gitpod.yml +++ b/.gitpod.yml @@ -1,9 +1,14 @@ # This configuration file was automatically generated by Gitpod. # Please adjust to your needs (see https://www.gitpod.io/docs/config-gitpod-file) # and commit this file to your remote git repository to share the goodness with others. - +image: node:18 tasks: - - init: npm install && npm run build - command: npm run start - + - init: pnpm install && pnpm db:push && pnpm db:seed + env: + COOLIFY_DATABASE_URL=file:../db/dev.db + COOLIFY_SECRET_KEY=12341234123412341234123412341234 + command: pnpm dev +ports: + - port: 3001 + visibility: public \ No newline at end of file