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
at feat/atb-60-theme-import-export 92 lines 950 B view raw
1# Git files 2.git/ 3.gitignore 4.gitattributes 5.gitmodules 6 7# Dependencies 8node_modules/ 9.pnpm-store/ 10.pnpm-debug.log 11 12# Build artifacts 13dist/ 14build/ 15.turbo/ 16.next/ 17*.tsbuildinfo 18 19# Test files 20**/*.test.ts 21**/*.spec.ts 22**/__tests__/ 23coverage/ 24 25# Documentation 26docs/ 27*.md 28# Keep essential README/production docs 29!README.md 30!CHANGELOG.md 31 32# IDE and editor files 33.vscode/ 34.idea/ 35*.swp 36*.swo 37*.swn 38*~ 39 40# OS files 41.DS_Store 42Thumbs.db 43desktop.ini 44 45# Logs 46*.log 47logs/ 48npm-debug.log* 49yarn-debug.log* 50yarn-error.log* 51 52# Nix and devenv 53.devenv/ 54.direnv/ 55devenv.nix 56devenv.lock 57devenv.yaml 58flake.nix 59flake.lock 60 61# Git hooks 62.lefthook/ 63lefthook.yml 64.husky/ 65 66# Bruno API collections 67bruno/ 68 69# Project-specific directories 70prior-art/ 71skills/ 72.worktrees/ 73.github/ 74 75# Environment files (except example) 76.env 77.env.* 78!.env.production.example 79 80# Temporary files 81tmp/ 82temp/ 83*.tmp 84 85# Misc 86.cache/ 87.npm/ 88.eslintcache 89.prettierignore 90vitest.workspace.ts 91.oxlintrc.json 92.npmrc