https://github.com/librepcb/librepcb-website
Official Website of LibrePCB
https://github.com/librepcb/librepcb-website
hacktoberfest
Last synced: 12 months ago
JSON representation
Official Website of LibrePCB
- Host: GitHub
- URL: https://github.com/librepcb/librepcb-website
- Owner: LibrePCB
- Created: 2015-09-12T20:32:18.000Z (almost 11 years ago)
- Default Branch: master
- Last Pushed: 2025-06-14T12:29:18.000Z (about 1 year ago)
- Last Synced: 2025-06-18T07:23:46.832Z (12 months ago)
- Topics: hacktoberfest
- Language: HTML
- Homepage: https://librepcb.org
- Size: 88.5 MB
- Stars: 9
- Watchers: 4
- Forks: 6
- Open Issues: 1
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# LibrePCB Website
This repository contains the sources official website of LibrePCB.
Hosted pages:
- HTML output of `master`: https://librepcb.org/
- HTML output of other branches: https://librepcb.org/_branches/
## Development
### With Docker On Linux
If you have Docker available on a Linux system, just run one of these
scripts:
```
./build.sh # Build page into 'public' directory
./run_server.sh # Build & host the page on http://localhost:1313/
```
### On Other Systems
The website is made with [Hugo](https://gohugo.io/). It does not need to be
installed, you can just download it as a portable binary. For instructions,
refer to their [documentation](https://gohugo.io/getting-started/installing/).
To build and review the website locally, just run one of the following
commands in the root directory of this repository:
```
hugo -F # Build page into 'public' directory
hugo server -F # Build & host the page on http://localhost:1313/
```