https://github.com/python-poetry/website
Source for the official Poetry website
https://github.com/python-poetry/website
hugo poetry python
Last synced: about 13 hours ago
JSON representation
Source for the official Poetry website
- Host: GitHub
- URL: https://github.com/python-poetry/website
- Owner: python-poetry
- Created: 2021-06-04T09:14:42.000Z (over 4 years ago)
- Default Branch: main
- Last Pushed: 2025-08-11T21:18:59.000Z (about 2 months ago)
- Last Synced: 2025-08-11T23:28:06.451Z (about 2 months ago)
- Topics: hugo, poetry, python
- Language: HTML
- Homepage: https://python-poetry.org
- Size: 2.66 MB
- Stars: 37
- Watchers: 5
- Forks: 20
- Open Issues: 12
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Poetry Website
[][official website]
This is the source of the official [Poetry website][official website].
It's built using the static site generator [Hugo](https://gohugo.io) and the Markdown docs from the [Poetry repo](https://github.com/python-poetry/poetry/tree/main/docs).
[official website]: https://python-poetry.org
## Requirements
- [Poetry](https://python-poetry.org/docs/main/#installing-with-the-official-installer)
- [Node.js 18](https://nodejs.org/en/download/) (and `npm`)## Local development
To work on this project locally, first fork and clone this repo. Then:
```sh
make site
```or, to instead use docs from a local `poetry` repo:
```sh
make site POETRY_REPO=../path/to/local/poetry/repo
```This will
- Either fetch or symlink `docs/*.md` from the `poetry` repo into `content/docs`
- Concurrently run `rollup` to compile assets and `hugo` to serve contentThe website will now be accessible at and reload on any changes.