You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Runs and serves the application in development mode.
15
+
```bash
16
+
./run-dev.sh
17
+
```
18
+
19
+
### Build
20
+
Build the application with production mode.
21
+
```bash
22
+
./build.sh
23
+
```
24
+
25
+
### Releases new patch version
26
+
**Release versions must be in sync with API versions.**
27
+
28
+
```bash
29
+
npm run release
30
+
```
31
+
32
+
### Releases new minor version
33
+
**Release versions must be in sync with API versions.**
34
+
35
+
```bash
36
+
npm run release-minor
37
+
```
38
+
39
+
### Deploy
40
+
Deploy the current state to **production**. Push to branch `deploy`, which will automatically build and deploy the current version to production. Or run ...
41
+
42
+
```bash
43
+
./deploy.sh
44
+
```
45
+
46
+
### Update API Reference
47
+
Convert the internal OpenAPI file to VuePress compatible Markdown. **Requires**
0 commit comments