Currently available at https://docs.projectalice.io
This wiki is build using vuepress. If you want to test it locally you need to build it:
vuepress build docs
Serve the website locally e.g. with http-server and not with the inbuilt server!
Webstorm integrates a run/debug configuration tool that comes very handy for this. This package uses http-server as webserver.
- Make sure you have
node.jsinstalled - Clone this repo in Webstorm
- Open this repo's
package.jsonfile- Webstorm should automatically propose to install the not yet installed dependencies
- If now, click on the packages that should be highlighted and
alt + enterthem, choosinginstall xxxfor each
- Open the
Run/Debug configurationtool - Create 2 new
npmconfigurations:- Build
- package.json: Pointing to the repo's
package.jsonfile - Command:
run - Script:
build
- package.json: Pointing to the repo's
- Serve
- package.json: Pointing to the repo's
package.jsonfile - Command:
run - Script:
serve - Arguments:
-O
- package.json: Pointing to the repo's
- Build
- Now you can first
buildthe sources and thenservethem as a local http server, all in one click! Theservecommand will give you the url to browse your local documentation website!