We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 9b2d7a7 commit 5fc3da9Copy full SHA for 5fc3da9
README.md
@@ -16,7 +16,6 @@ cp presets.json.template presets.json
16
cp alerts.json.template alerts.json
17
npm install
18
npm run build
19
-npm run build-server
20
node build/server.js
21
```
22
package.json
@@ -24,8 +24,9 @@
24
"winston": "^3.2.1"
25
},
26
"scripts": {
27
- "start": "react-scripts start",
28
- "build": "react-scripts build",
+ "start": "export PORT=3001 && react-scripts start",
+ "build": "npm run build-client && npm run build-server",
29
+ "build-client": "react-scripts build",
30
"start-server": "node build/server.js",
31
"build-server": "tsc --project tsconfig.server.json --jsx react",
32
"test": "react-scripts test --env=jsdom",
0 commit comments