Skip to content

Commit 250657d

Browse files
committed
ft-99: simplify setup
1 parent e81bc48 commit 250657d

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

README.md

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -39,9 +39,8 @@ FlowTest has 2 major components -
3939
3. Install all dependencies of all modules:
4040
```bash
4141
npm install
42-
cd server && npm install
4342
```
44-
4. Rename .env.example to .env and enter your cerdentials, for instance
43+
4. Rename `.env.example` to `.env` and enter your cerdentials, for instance
4544
```bash
4645
OPENAI_API_KEY={API_KEY_VALUE}
4746
PORT=3500

package.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,8 @@
2727
"start": "npm run build && cd server && npm start",
2828
"build": "react-scripts build",
2929
"test": "react-scripts test",
30-
"eject": "react-scripts eject"
30+
"eject": "react-scripts eject",
31+
"postinstall": "cd server && npm install"
3132
},
3233
"eslintConfig": {
3334
"extends": [

0 commit comments

Comments
 (0)