You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
19 lines
406 B
19 lines
406 B
8 months ago
|
# Website of Gergely Polonkai
|
||
|
|
||
|
## Publishing to the web
|
||
|
|
||
|
```
|
||
|
poetry run pelican content
|
||
|
rsync --archive --verbose --human-readable --delete output/ /data/gergely.polonkai.eu/html
|
||
|
restorecon -vr /data/gergely.polonkai.eu/html
|
||
|
```
|
||
|
|
||
|
## Publishing to IPFS
|
||
|
|
||
|
```
|
||
|
poetry run pelican -s ipfspublish.py -o ipfs-version content
|
||
|
cd ipfs-version
|
||
|
ipfs add -r .
|
||
|
ipfs name publish --key=gergely.polonkai.eu /ipfs/XXX
|
||
|
```
|