Go to file
Thomas Smith f9601c70fc
Add Video of Max at Web Summit (#293)
* Add video player to 'www'

* Switch to YouTube embed + spacing

* Unnecessary script

* Added image back, moved video to section below

* Change copy, forgot to add responsive columns

* Change elipses and capitalize Homebrew

* apostrophes are elipses
2023-03-15 18:26:51 -04:00
.cdk Increase CDK Lambda memory limit and some cleanup 2022-12-15 17:09:32 -05:00
.design Added another section re: how to contribute 2022-12-21 09:01:28 -05:00
.github move to just as task runner 2023-01-18 17:20:13 -05:00
src Add Video of Max at Web Summit (#293) 2023-03-15 18:26:51 -04:00
.gitignore #190 package details page path should be /+full_name/ 2022-11-14 19:50:04 +08:00
.justfile move to just as task runner 2023-01-18 17:20:13 -05:00
.markdownlint.json some cleanup during audit 2022-05-17 14:21:31 -04:00
babel.config.js step 1: build something 2022-11-09 21:45:40 -05:00
LICENSE.md some cleanup during audit 2022-05-17 14:21:31 -04:00
lychee.toml broken links 2023-01-06 17:08:42 -05:00
package-lock.json step 1: build something 2022-11-09 21:45:40 -05:00
package.json step 1: build something 2022-11-09 21:45:40 -05:00
README.md stick to node 18.13.0 temporarily 2023-02-02 09:12:26 +08:00

tea

Deploys to tea.xyz.

Legal

You may not publish this website in an attempt to masquerade as tea.inc. The tea logo and wordmark are registered trademarks of tea.inc.

Contributing

Getting Started

hugo can render your edits while you work:

hugo serve --watch --buildDrafts --source src
# or
just serve

Package Pages

The detail pages of each package are not committed to the repository for the simple reason of that would be too much repeating data. Execute the following command just once per version of /src/data/packages.json. This will create the package detail pages in /src/content/+[package.full_name].md. Which resembles the installation tag in tea cli

.github/build-package-pages.sh src/data/packages.json src/content
# or
just package-pages

Dependencies

Project Version
gohugo.io >=0.99
nodejs.org =18.13.0
npmjs.com *
just.systems ~1

Build

Builds a static, deployable version of the website.

npm ci
hugo --source src --destination ../public --minify
# or
just build