mirror of https://github.com/Lissy93/dashy.git
🔧 Adds config file for GitPod env (#497)
This commit is contained in:
parent
9e383e0638
commit
0e101b6330
|
@ -0,0 +1,29 @@
|
||||||
|
# Config for running Dashy in GitPod's cloud dev environment
|
||||||
|
# Docs: https://www.gitpod.io/docs/references/gitpod-yml
|
||||||
|
|
||||||
|
# Commands to start on workspace startup
|
||||||
|
tasks:
|
||||||
|
- init: yarn install
|
||||||
|
command: yarn dev
|
||||||
|
# Ports to expose on workspace startup
|
||||||
|
ports:
|
||||||
|
- port: 8080 # Default dev server
|
||||||
|
visibility: private
|
||||||
|
onOpen: open-preview
|
||||||
|
- port: 4000 # Default prod server
|
||||||
|
visibility: public
|
||||||
|
onOpen: open-preview
|
||||||
|
prebuilds:
|
||||||
|
# Adds 'Open in GitPod' to PRs
|
||||||
|
addBadge: true
|
||||||
|
addComment: false
|
||||||
|
vscode:
|
||||||
|
# Adds Vue.js and formatting extensions
|
||||||
|
extensions:
|
||||||
|
- octref.vetur
|
||||||
|
- dbaeumer.vscode-eslint
|
||||||
|
- streetsidesoftware.code-spell-checker
|
||||||
|
- PKief.material-icon-theme
|
||||||
|
- wix.vscode-import-cost
|
||||||
|
- oderwat.indent-rainbow
|
||||||
|
- eamodio.gitlens
|
Loading…
Reference in New Issue