mirror of
https://github.com/documenso/documenso.git
synced 2025-11-12 15:53:02 +10:00
fix: Add gitpod configuration
This commit is contained in:
40
.gitpod.yml
Normal file
40
.gitpod.yml
Normal file
@ -0,0 +1,40 @@
|
||||
tasks:
|
||||
- init: |
|
||||
cp .env.example .env &&
|
||||
set -a; source .env &&
|
||||
npm run dx &&
|
||||
sed -i -e "s|http://localhost:3000|$(gp url 3000)|" .env \
|
||||
-e "s|http://localhost:3001|$(gp url 3001)|" .env \
|
||||
-e "s|http://localhost:9000|$(gp url 9000)|" .env
|
||||
command: npm run dev
|
||||
|
||||
ports:
|
||||
- port: 3000
|
||||
visibility: public
|
||||
onOpen: open-preview
|
||||
- port: 3001
|
||||
visibility: public
|
||||
onOpen: open-preview
|
||||
- port: 9000
|
||||
visibility: public
|
||||
onOpen: ignore
|
||||
- port: 1100
|
||||
visibility: private
|
||||
onOpen: ignore
|
||||
- port: 2500
|
||||
visibility: private
|
||||
onOpen: ignore
|
||||
|
||||
|
||||
github:
|
||||
prebuilds:
|
||||
master: true
|
||||
pullRequests: true
|
||||
pullRequestsFromForks: true
|
||||
addCheck: true
|
||||
addComment: true
|
||||
addBadge: true
|
||||
|
||||
vscode:
|
||||
extensions:
|
||||
- bradlc.vscode-tailwindcss
|
||||
Reference in New Issue
Block a user