https://github.com/ideadapt/swiss-lawful-interception-visualization
The Digital Society Switzerland annually publishes the Swiss Lawful Interception Report on the cantons of Switzerland. This Visualization complements the report interactively.
https://github.com/ideadapt/swiss-lawful-interception-visualization
Last synced: about 1 year ago
JSON representation
The Digital Society Switzerland annually publishes the Swiss Lawful Interception Report on the cantons of Switzerland. This Visualization complements the report interactively.
- Host: GitHub
- URL: https://github.com/ideadapt/swiss-lawful-interception-visualization
- Owner: ideadapt
- License: cc-by-sa-4.0
- Created: 2015-02-24T23:14:37.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2024-11-10T04:36:27.000Z (over 1 year ago)
- Last Synced: 2025-05-02T20:56:20.021Z (about 1 year ago)
- Language: JavaScript
- Size: 32 MB
- Stars: 6
- Watchers: 6
- Forks: 4
- Open Issues: 40
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README

Setup
===
Install NPM (Node.js Package Manager)
http://nodejs.org/download/
Run in terminal:
```
yarn global add install grunt-cli
yarn global add install jshint
yarn global add install browserify
yarn install
```
Build
===
Builds the client and puts all files into dist folder. Use the dist folder as website root.
```
grunt build
```
Development, Live Preview
===
Builds dev client, starts web server, watch changes, preview in browser
```
grunt serve
```
or to create a staging build, which can be load using /sliv path, e.g. localhost:8080/sliv.
```
grunt build:staging
```
after translations csv changed, use
```
grunt i18n:compile
```
to create json representation. Then reload page; reload is done automatically during grunt serve.