add gitpod configs

This commit is contained in:
2025-06-02 23:24:14 +00:00
parent f34f5ef715
commit e36be5f1f4
3 changed files with 67 additions and 0 deletions

22
.gitpod/automations.yaml Normal file
View File

@@ -0,0 +1,22 @@
tasks:
install-dependencies:
name: Install dependencies
command: |
bun install
triggeredBy:
- manual
- postDevcontainerStart
web:
name: Run web
command: |
cd packages/web && bun run dev
triggeredBy:
- manual
server:
name: Run server
command: |
cd packages/server && bun run dev
triggeredBy:
- manual