Files
fcc-timestamp-microservice/.gitpod.yml
T
2024-11-14 17:32:15 +01:00

20 lines
343 B
YAML

image: gitpod/workspace-bun
tasks:
- name: Init a bun project and run
init: |
# Init a project if needed
if test ! -e package.json; then {
bun init -y
} fi
# Install dependencies
bun install
command: |
# Run project
bun run index.ts
ports:
- port: 3000
onOpen: open-preview