πͺ Bring convenience, accountability, and community to your academic organization's governance using TreasuryKit's all-in-one platform for managing funds, events, and members.
- Honor Societies
- Student-run clubs
- Class Government
- CR(eventually UD)-able Entities
- Organizations
- Expenses
- Budget Items
- Transactions
- Reports
- Members
- Roles
- Invites
- Groups
- UI
- Onboarding
- Currency Selection
- Command palette (basic links)
- Available/ balance
- Onboarding
- TypeScript - For type safety and improved developer experience
- TanStack Start - SSR framework with TanStack Router
- React Native - Build mobile apps using React
- Expo - Tools for React Native development
- TailwindCSS - Utility-first CSS for rapid UI development
- shadcn/ui - Reusable UI components
- oRPC - End-to-end type-safe APIs with OpenAPI integration
- Drizzle - TypeScript-first ORM
- SQLite/Turso - Database engine
- Authentication - Better-Auth
- Biome - Linting and formatting
- Turborepo - Optimized monorepo build system
First, install the dependencies:
pnpm installThis project uses SQLite with Drizzle ORM.
- Start the local SQLite database:
cd packages/db && pnpm run db:local-
Update your
.envfile in theapps/webdirectory with the appropriate connection details if needed. -
Apply the schema to your database:
pnpm run db:pushThen, run the development server:
pnpm run devOpen http://localhost:3001 in your browser to see your fullstack application. Use the Expo Go app to run the mobile application.
treasurykit/
βββ apps/
β βββ web/ # Fullstack application (React + TanStack Start)
β βββ native/ # Mobile application (React Native, Expo)
βββ packages/
β βββ api/ # API layer / business logic
β βββ auth/ # Authentication configuration & logic
β βββ db/ # Database schema & queries
pnpm run dev: Start all applications in development modepnpm run build: Build all applicationspnpm run deploy:cf: Deploy to Cloudflare Workers onlypnpm run deploy:vercel: Deploy to Vercel onlypnpm run check-types: Check TypeScript types across all appspnpm run dev:native: Start the React Native/Expo development serverpnpm run db:push: Push schema changes to databasepnpm run db:studio: Open database studio UIcd packages/db && pnpm run db:local: Start the local SQLite databasepnpm run check: Run Biome formatting and linting