Skip to content

Commit a971048

Browse files
authored
Merge pull request #31 from thdk/chore/mobx-6
Chore/mobx 6
2 parents f415300 + 24063f2 commit a971048

File tree

14 files changed

+2415
-4372
lines changed

14 files changed

+2415
-4372
lines changed

README.md

Lines changed: 22 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -62,8 +62,28 @@ These instructions will get you a copy of the project for development and testin
6262

6363
### Prerequisites
6464

65-
You'll need node, npm and java installed.
66-
(Java is needed to run the tests with a firestore emulotor)
65+
#### node
66+
67+
I assume you already have node with npm installed.
68+
69+
#### firebase-tools
70+
You need to have `firebase-tools` installed globally to run the firebase emulator:
71+
72+
```sh
73+
npm i -g firebase-tools
74+
```
75+
76+
#### java
77+
78+
[java](https://openjdk.java.net/install/) is required to run the tests with a firestore emulator.
79+
80+
**Install java on linux (debian, ubuntu)**
81+
82+
```sh
83+
sudo apt-get install openjdk-8-jre
84+
```
85+
86+
6787

6888
### Installing
6989

cloudbuild.deploy.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ steps:
22
- name: 'node:13-alpine'
33
entrypoint: "npm"
44
args: ['ci']
5-
- name: 'node:13-alpine'
6-
entrypoint: "npm"
7-
args: ['run', 'prepare']
85
- name: 'node:13-alpine'
96
entrypoint: "npm"
107
args: ['run', 'build']

cloudbuild.yaml

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,9 +2,6 @@ steps:
22
- name: 'node:13-alpine'
33
entrypoint: "npm"
44
args: ['ci']
5-
- name: 'node:13-alpine'
6-
entrypoint: "npm"
7-
args: ['run', 'prepare']
85
- name: 'node:13-alpine'
96
entrypoint: "npm"
107
args: ['run', 'build']

0 commit comments

Comments
 (0)