Skip to content
This repository has been archived by the owner on Dec 15, 2022. It is now read-only.

urbit/tlon.io

Repository files navigation

Tlon

Tlon is the company that builds Urbit. This is the Tlon website, hosted at tlon.io.

🔧

Installation

# install zola (macOS)
$ brew install zola

# install tailwind for css
$ yarn

Running

# dev
$ yarn run dev
# runs 2 dev commands in parallel:
#   - watches css/style.css and builds to static/style.css
#     on changes (for tailwind)
#   - runs `zola serve` and serves the frontend to
#     http://localhost:1111

# build
$ yarn run build
# builds and minifies css/style.css to public/style.css
# and then runs `zola build` to build the rest of the site

# you can test your build locally by running
# npx serve public -p 1111
# and then visiting http://localhost:1111