tst_pages/README.md

25 lines
530 B
Markdown
Raw Normal View History

2024-03-13 18:07:54 +01:00
# Test Pages
Test with page generation. Juste a small yew app.
The generated pages are available here: <https://histausse.page.mineau.eu/tst_pages/>
2024-03-11 13:27:38 +01:00
# Gen pages:
2024-03-13 18:08:39 +01:00
CF <https://git.mineau.eu/histausse/tst_pages/src/branch/main/.forgejo/workflows/publish.yaml>
2024-03-13 18:07:54 +01:00
2024-03-11 13:27:38 +01:00
```
git clone <repo>
trunk build --release --public-url '.'
cd dist
git init
git remote add origin <repo>
# remove old pages branch
git push origin -d pages
git checkout -b pages
git add *
git commit -m "gen pages"
# push new pages branch
git push -u origin pages
```