Skip to content

Commit

Permalink
Merge pull request #545 from keystonejs/BoltStartProject
Browse files Browse the repository at this point in the history
bolt start {project}
  • Loading branch information
Nathan Simpson authored Dec 6, 2018
2 parents feecd33 + 51c13ca commit 93e1caf
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -75,10 +75,10 @@ Then install the dependencies and start the test project:

```sh
bolt
bolt start
bolt start {name of project folder}
```

_(This will start the project located in `projects/basic`)_
_(Running `bolt start` will start the project located in `projects/basic` by default)_

## Contributing

Expand Down
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@
"lint:prettier": "prettier --list-different \"**/*.js\"",
"lint:flow": "flow check",
"lint": "yarn lint:prettier && yarn lint:eslint && yarn lint:flow",
"start": "cd projects/basic && yarn start",
"start": "/bin/sh -c 'cd projects/${1:-$0} && yarn start' basic",
"arch": "cd packages/arch/www && yarn && cd .. && yarn start",
"test": "yarn lint && yarn test:unit && yarn cypress:run",
"test:unit": "DISABLE_LOGGING=true NODE_ENV=test jest",
Expand Down

0 comments on commit 93e1caf

Please sign in to comment.