privacy/README.md

23 lines
472 B
Markdown
Raw Normal View History

2020-09-15 15:09:37 +02:00
# Privacy policy
The privacy policy for my website.
## Development
### Requirements
* [npm](https://www.npmjs.com/)
### Setting up
```shell script
# Install dependencies (only needed once)
$> npm ci
```
### Building
```shell script
# Build the privacy policy in `dist/` for development
$> npm run dev
# Same as above, but automatically rerun it whenever files are changed
$> npm run dev:server
# Build the privacy policy in `dist/` for deployment
$> npm run deploy
```