24 lines
511 B
Markdown
24 lines
511 B
Markdown
# Website zur Überwachungsfrei Kundgebung
|
|
|
|
## Developing Locally
|
|
|
|
Edit the main pages in [src/pages/](./src/pages/) and run the following commands in a separate terminal.
|
|
|
|
```sh
|
|
pnpm install
|
|
pnpm run dev
|
|
```
|
|
|
|
## Deploying
|
|
|
|
```sh
|
|
pnpm run build
|
|
rsync -rv --delete dist/ public-web-static.hosts.hamburg.ccc.de:ueberwachungsfrei.eu/
|
|
```
|
|
|
|
Then on public-web-static
|
|
|
|
```sh
|
|
sudo rsync -rv --delete --chown=ueberwachungsfrei-deploy:ueberwachungsfrei-deploy ./ueberwachungsfrei.eu/ /var/www/ueberwachungsfrei.eu/
|
|
```
|
|
|