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.js
installed - Clone this repo in Webstorm
- Open this repo's
package.json
file- Webstorm should automatically propose to install the not yet installed dependencies
- If now, click on the packages that should be highlighted and
alt + enter
them, choosinginstall xxx
for each
- Open the
Run/Debug configuration
tool - Create 2 new
npm
configurations:- Build
- package.json: Pointing to the repo's
package.json
file - Command:
run
- Script:
build
- package.json: Pointing to the repo's
- Serve
- package.json: Pointing to the repo's
package.json
file - Command:
run
- Script:
serve
- Arguments:
-O
- package.json: Pointing to the repo's
- Build
- Now you can first
build
the sources and thenserve
them as a local http server, all in one click! Theserve
command will give you the url to browse your local documentation website!