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
git submodule update --init --recursive# a test-time database dump
38
45
yarn install
39
46
yarn dev
40
47
```
41
48
42
-
This will:
43
-
-Build the common package
44
-
-Start a local CouchDB instance in Docker with test data
45
-
-Launch the Express backend server
46
-
-Launch the Vue frontend (http://localhost:5173)
49
+
`dev` here:
50
+
-Builds packages
51
+
-Starts a local CouchDB instance in Docker with test data (http://localhost:5984)
52
+
-Launches the Express backend server (http://localhost:3000)
53
+
-Launches the Vue frontend (http://localhost:5173)
47
54
48
55
## Production Build
49
56
50
57
```bash
51
58
yarn build
52
59
```
53
60
54
-
This builds all packages and outputs the frontend as a static web app in the `packages/vue/dist` folder and the backend in `packages/express/dist`.
61
+
This builds all packages and outputs the frontend as a static web app in the `packages/platform-ui/dist` folder and the backend in `packages/express/dist`.
55
62
56
63
## License
57
64
58
65
This project is licensed under:
59
66
60
67
-**AGPL-3.0** for the core platform: [License](https://opensource.org/licenses/AGPL-3.0)
61
-
-**MIT** for materials in base course content: [License](https://opensource.org/licenses/MIT)
68
+
-**MIT** for materials in the `courses` package: [License](https://opensource.org/licenses/MIT)
0 commit comments