Last active
April 9, 2018 15:46
-
-
Save chesleybrown/4417e02ed86437da0c83ecb358c49940 to your computer and use it in GitHub Desktop.
Failing to start on server
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
schema: | |
- name: server | |
path: . | |
commands: | |
run: | |
status: true | |
args: | |
- -e="environment.env" | |
watcher: | |
paths: | |
- / | |
extensions: | |
- go | |
- env | |
ignored_paths: | |
- .git | |
- .realize | |
- build | |
- client | |
- vendor | |
- name: client-js | |
path: . | |
commands: {} | |
watcher: | |
paths: | |
- client/src | |
extensions: | |
- js | |
- ts | |
- tsx | |
- scss | |
- svg | |
scripts: | |
- type: after | |
command: npm --prefix client run build-dev | |
output: true | |
- name: client-public | |
path: . | |
commands: {} | |
watcher: | |
paths: | |
- client/public | |
extensions: | |
- html | |
scripts: | |
- type: after | |
command: npm --prefix client run build-dev | |
output: true |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment