Skip to content

Commit

Permalink
Fabo/switch to yarn (#122)
Browse files Browse the repository at this point in the history
* switch to yarn

* Update Readme
  • Loading branch information
faboweb authored and colw committed Nov 26, 2019
1 parent 1f3d3b4 commit 30bb928
Show file tree
Hide file tree
Showing 4 changed files with 10 additions and 7,974 deletions.
6 changes: 3 additions & 3 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,10 +7,10 @@ jobs:
- checkout
- run:
name: Install dependencies
command: npm install
command: yarn
- run:
name: Lint
command: npm run lint
command: yarn lint
- run:
name: Test
command: npm test
command: yarn test
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -9,27 +9,27 @@ git clone https://github.com/luniehq/lunie-api.git
Install dependencies:

```
npm install
yarn install
```

## Run

Start with automatic restart on save:

```
npm run dev
yarn dev
```

Or start using Redis for the Apollo cache. You will need to set `REDIS_URL` environment variable with your Redis server URL.

```
npm run dev-cache
yarn dev-cache
```

Or start in a docker container:

```
npm run dev-docker
yarn dev-docker
```

## Development
Expand Down
Loading

0 comments on commit 30bb928

Please sign in to comment.