toctoc
Usage
Refer to the web and backend READMEs.
Releasing a new verison
web
and backend
are two different projects with two different release methods:
backend
is released automatically by the CIweb
must be released manually as follows:npm version X.Y.Z
(to choose a version number, check the latest release tag and follow the standardbreaking
changes guidelines)- npm publish
- commit the new
package.json
with messageX.Y.Z
, and add the corresponding tag by runninggit tag vX.Y.Z
git push
andgit push --tags