-
-
Notifications
You must be signed in to change notification settings - Fork 1.4k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
🔧 Adds config file for GitPod env (#497)
- Loading branch information
Showing
1 changed file
with
29 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -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 |