The webapp for the CollabVM Server
Go to file
dependabot[bot] 61984057fe
Bump braces from 3.0.2 to 3.0.3
Bumps [braces](https://github.com/micromatch/braces) from 3.0.2 to 3.0.3.
- [Changelog](https://github.com/micromatch/braces/blob/master/CHANGELOG.md)
- [Commits](https://github.com/micromatch/braces/compare/3.0.2...3.0.3)

---
updated-dependencies:
- dependency-name: braces
  dependency-type: indirect
...

Signed-off-by: dependabot[bot] <support@github.com>
2024-06-23 08:00:35 +00:00
src improve load times by consolidating metadata into languages.json and only loading the requested language 2024-06-23 03:51:42 -04:00
static/lang improve load times by consolidating metadata into languages.json and only loading the requested language 2024-06-23 03:51:42 -04:00
.editorconfig Introduce editorconfig 2024-04-05 17:18:51 +01:00
.gitignore Switch to using parcel json imports instead of Config.ts 2024-04-10 16:49:04 -04:00
.npmrc buncha shit uhh i forgot to make a repo until now 2023-01-25 19:55:34 -05:00
.parcelrc chat and rename, half-working turn status. re-add crusty guac keyboard shit 2024-02-04 13:02:45 -05:00
.prettierignore Implement basic i18n 2024-03-12 06:45:03 -04:00
.prettierrc.json reformat typescript code with prettier 2024-03-12 01:28:23 -04:00
config.example.json Make welcome modal localStorage key configurable 2024-04-10 17:08:13 -04:00
jest.config.js More i18n related updates 2024-03-15 04:01:40 -04:00
LICENSE Create LICENSE 2023-01-26 11:28:06 -05:00
package.json add support for country flags 2024-06-23 02:18:35 -04:00
README.md Switch to using parcel json imports instead of Config.ts 2024-04-10 16:49:04 -04:00
tsconfig.json Switch to using parcel json imports instead of Config.ts 2024-04-10 16:49:04 -04:00
webapp.png temporary logo that doesn't suck^2 2024-06-12 20:06:29 -04:00
yarn.lock Bump braces from 3.0.2 to 3.0.3 2024-06-23 08:00:35 +00:00

CollabVM 1.2 Webapp 2.0

CollabVM Web App

The CollabVM Web App is the viewer for the CollabVM Server.

Building

Copy config.example.json to config.json and edit to your needs, then:

yarn

  • yarn
  • yarn build

npm

  • npm i
  • npm run build

The build output directory is dist/.

Unit testing

This is very minimal and only tests a single standalone part at the moment:

  • yarn test

Serving

Just drop the contents of dist/ somewhere into your webroot.

For testing or development purposes only, you can throw up a quick test webserver with the following command:

yarn

yarn serve

npm

npm run serve