Skip to content

Commit

Permalink
fix typo and watchman error (datahub-project#1574)
Browse files Browse the repository at this point in the history
* adjust gradew to gradlew

* add watchman proxy URL
  • Loading branch information
clojurians-org authored Feb 24, 2020
1 parent 0b68cd8 commit e69def9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion datahub-web/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ Building will run the monorepo test suite and transpile the TypeScript applicati
## Developing & Running the web application
Once [DataHub GMS](../gms) and the [DataHub Frontend](../datahub-frontend) are running you can start [DataHub Web](./) by running:
```sh
datahub> ./gradew emberServe
datahub> ./gradlew emberServe
```

or
Expand Down
2 changes: 1 addition & 1 deletion datahub-web/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -49,7 +49,7 @@ task emberLintHbs(type: YarnTask, dependsOn: emberLintJs) {
}

task emberServe(type: YarnTask, dependsOn: emberLintHbs) {
args = ['workspace', yarnMainProject, 'run', 'start', '--proxy', 'localhost:9001', '--secure-proxy=false']
args = ['workspace', yarnMainProject, 'run', 'start', '--proxy', 'http://localhost:9001', '--secure-proxy=false']
}

task emberWorkspaceTest(type: YarnTask, dependsOn: emberLintHbs) {
Expand Down

0 comments on commit e69def9

Please sign in to comment.