Skip to main content

max / makenotwork

1.0 KB · 34 lines History Blame Raw
1 # The tier table at `/creators`, which is words and a tier name.
2 #
3 # Read at build time by the `declare!` in `src/quasi/creators.rs`. Editing this
4 # file is editing the page. See `content/use-cases.toml` for the split this
5 # follows, including the trade it makes.
6 #
7 # `priced` names which tier's figures the row ends with, and that is the one
8 # thing on this table a request decides: the numbers come from `TierPrices` in
9 # memory, so the last two cells are holes and the first two are literals. The
10 # word here is a tier name and not a price, which is what keeps a stale number
11 # from ever being written down.
12 #
13 # The order is the order the shipped table listed them.
14
15 [[tiers]]
16 name = "Basic"
17 best_for = "Text, blogs, newsletters"
18 priced = "basic"
19
20 [[tiers]]
21 name = "Small Files"
22 best_for = "Audio, plugins, small software"
23 priced = "small-files"
24
25 [[tiers]]
26 name = "Big Files"
27 best_for = "Video, games, large software"
28 priced = "big-files"
29
30 [[tiers]]
31 name = "Everything"
32 best_for = "All features, current and future"
33 priced = "everything"
34