https://github.com/glfw/glfw.github.io
Jekyll sources for GLFW website
https://github.com/glfw/glfw.github.io
glfw
Last synced: 7 months ago
JSON representation
Jekyll sources for GLFW website
- Host: GitHub
- URL: https://github.com/glfw/glfw.github.io
- Owner: glfw
- License: other
- Created: 2013-03-07T14:09:47.000Z (over 12 years ago)
- Default Branch: master
- Last Pushed: 2024-09-21T07:10:51.000Z (about 1 year ago)
- Last Synced: 2025-01-14T18:37:05.768Z (9 months ago)
- Topics: glfw
- Language: SCSS
- Homepage: https://www.glfw.org/
- Size: 7.07 MB
- Stars: 28
- Watchers: 8
- Forks: 19
- Open Issues: 10
-
Metadata Files:
- Readme: README.md
- Changelog: changelog.md
- License: license.md
Awesome Lists containing this project
README
# GLFW website
This is the [Jekyll](https://jekyllrb.com/) source for the
[glfw.org](https://www.glfw.org/) website.The sources for this website are under the [zlib/libpng
license](https://opensource.org/licenses/Zlib), the same as the library.## Development environment setup
### Docker
Having [Docker](https://www.docker.com/) installed, spinning up a local Jekyll
development server is as easy as running:```
docker-compose up
```### Manual
Having [Ruby](https://www.ruby-lang.org/) properly installed and configured on
your machine, these Ruby gems should be manually installed as well:```
gem install jekyll jekyll-seo-tag jekyll-sitemap rouge
```Finally start the Jekyll development server by running:
```
jekyll serve
```**Note**: Please set `JEKYLL_ENV=production` environment variable before running
production build.