WIP! A BB-style forum, on the ATmosphere! We're still working... we'll be back soon when we have something to show off!
node typescript hono htmx atproto
4
fork

Configure Feed

Select the types of activity you want to include in your feed.

at 9a93b3e9112f319dbc8bc70b1317543164d62f07 27 lines 531 B view raw
1{ 2 "$schema": "https://turborepo.dev/schema.json", 3 "tasks": { 4 "build": { 5 "dependsOn": ["^build"], 6 "inputs": ["src/**", "lexicons/**", "scripts/**", "package.json", "tsconfig.json"], 7 "outputs": ["dist/**"] 8 }, 9 "dev": { 10 "dependsOn": ["^build"], 11 "cache": false, 12 "persistent": true 13 }, 14 "lint": { 15 "dependsOn": ["^build"] 16 }, 17 "lint:fix": { 18 "cache": false 19 }, 20 "test": { 21 "dependsOn": ["^build"] 22 }, 23 "clean": { 24 "cache": false 25 } 26 } 27}