UNMAINTAINED: After more than 5 years sitting stagnant, Myst is definitively dormant and the website/domain has not been renewed. Thanks for your interest over the years.
This repository contains the source for the Myst programming language home page, (soon to be) available at https://myst-lang.org.
To run the site locally, simply start up a static webserver within the docs/
folder. My favorite is the ruby gem asdf
:
$ gem install asdf # if you need to
$ cd docs/
$ asdf
If you are making changes to the site, you'll need to be running guard
(another Ruby gem). To help get set up, this project provides a Gemfile
for Bundler.
$ gem install bundler # if you don't have bundler installed.
$ bundle # Install dependencies
$ bundle exec guard # start the guard server
The source for the website lives in the src/
folder. This includes the source for the pages and other dynamic content that needs to be compiled. Static assets (CSS, images, etc.) are kept in the docs/
folder.