22 lines
444 B
Markdown
22 lines
444 B
Markdown
# My website
|
|
|
|
setup with plain python
|
|
```bash
|
|
python -mvenv .venv
|
|
source ./.venv/bin/activate
|
|
pip install mkdocs
|
|
pip install mkdocs-simple-blog
|
|
mkdocs serve # to preview the website locally
|
|
mkdocs build # to build the website in ./site
|
|
```
|
|
|
|
with uv
|
|
```bash
|
|
uv venv
|
|
source ./.venv/bin/activate
|
|
uv pip install mkdocs
|
|
uv pip install mkdocs-simple-blog
|
|
mkdocs serve # to preview the website locally
|
|
mkdocs buid # to build the website in ./site
|
|
```
|