The default DAPNET Web-frontend. Written in the Vue.js framework and built using webpack.
For further information visit this project's wiki.
- Make sure you have a current installation of Docker on your server
- Prepare a directory to hold your configuration (e.g.
/srv/dapnet/web/config) and copy the following files from this repository there:src/store/config/defaultUrls.json.exampletodefaultUrls.jsonand change the default url-settingssrc/store/config/defaultText.json.exampletodefaultText.jsonand change the default custom text (displayed on the home page)src/store/config/defaultMap.json.exampletodefaultMap.jsonand change the default map-settings
- Pull the image and run the container while mapping the webserver to port
8080:
docker run --name dapnet-web -d -v /srv/dapnet/web/config:/app/src/store/config:ro -p 8080:80 dapnet/web- You are done. The container will build the website, update the coverage data and publish the website on the specified port
If you do not want to use the all-in-one Docker image, you are free to follow the manual installation guide.