···11+# Templates that should be processed
22+*.ts linguist-detectable=true
33+*.html linguist-detectable=true
44+*.css linguist-detectable=true
-21
LICENSE
···11-MIT License
22-33-Copyright (c) 2025 Kieran Klukas
44-55-Permission is hereby granted, free of charge, to any person obtaining a copy
66-of this software and associated documentation files (the "Software"), to deal
77-in the Software without restriction, including without limitation the rights
88-to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
99-copies of the Software, and to permit persons to whom the Software is
1010-furnished to do so, subject to the following conditions:
1111-1212-The above copyright notice and this permission notice shall be included in all
1313-copies or substantial portions of the Software.
1414-1515-THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
1616-IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
1717-FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
1818-AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
1919-LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
2020-OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
2121-SOFTWARE.
+10-6
README.md
···4455It uses Lit, Bun, and Drizzle as the main stack and they all work together to make a wonderful combo.
6677-## How do I hack on it?
77+## Quick Start
8899-### Development
99+```bash
1010+bunx tacy-stack
1111+```
10121111-Getting started is super straightforward:
1313+The CLI will guide you through creating a new project with an interactive prompt.
1414+1515+**Manual setup:**
12161317```bash
1414-bun install
1515-cp .env.example .env
1616-bun run db:push
1818+git clone <this-repo> my-app
1919+cd my-app
2020+bun run setup
1721bun dev
1822```
1923
+3
bunfig.toml
···11+[install]
22+# Bun's fast native lockfile
33+frozen = false