Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/hylo-lang/hylo-lang.github.io
Landing page for Hylo
https://github.com/hylo-lang/hylo-lang.github.io
Last synced: 29 days ago
JSON representation
Landing page for Hylo
- Host: GitHub
- URL: https://github.com/hylo-lang/hylo-lang.github.io
- Owner: hylo-lang
- Created: 2022-07-03T22:42:36.000Z (over 2 years ago)
- Default Branch: main
- Last Pushed: 2023-08-11T09:46:09.000Z (over 1 year ago)
- Last Synced: 2023-08-12T03:14:12.780Z (over 1 year ago)
- Language: HTML
- Homepage: http://www.hylo-lang.org
- Size: 357 KB
- Stars: 93
- Watchers: 8
- Forks: 10
- Open Issues: 11
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Hylo website
This repository contains Hylo's website, which you can browse [here](https://hylo-lang.org).
## Infrastructure
The reference is developed as a [Jekyll](https://jekyllrb.com) website,
currently being served by [GitHub Pages](https://pages.github.com).## Running a local server
### Setting up the environment
To set up the dependencies, you need to have [Ruby]() and the [Bundler](https://bundler.io/) package manager installed (`gem install bundler`). Alternatively, you can also use a devcontainer to set up a VM with all the required dependencies, and have a nicely integrated coding enviroment.Then, you can run
```
bundle install
```
to resolve and download the project's dependencies.You can start the local server by
```
bundle exec jekyll serve -l
```
which makes the site available at http://localhost:4000.