No description
  • TypeScript 98.9%
  • CSS 0.9%
  • Rust 0.1%
Find a file
2026-03-19 01:27:33 +00:00
.github
.vscode
.zed
apps feat: editable projectCode on new project 2026-03-19 01:27:33 +00:00
packages Full translation (#24) 2026-03-17 00:16:26 +00:00
.gitattributes
.gitignore
biome.json style(format): biome compliance 2026-03-13 02:14:49 +00:00
bun.lock feat: full swap to BaseUI 2026-03-15 02:36:00 +00:00
bunfig.toml
package.json chore(deps): bump deps 2026-03-12 20:21:49 +00:00
README.md
turbo.json fix: hopefully fix dokploy server deployment 2026-03-11 02:42:44 +00:00

browngest

This project was created with Better-T-Stack, a modern TypeScript stack that combines React, TanStack Router, Elysia, and more.

Features

  • TypeScript - For type safety and improved developer experience
  • TanStack Router - File-based routing with full type safety
  • TailwindCSS - Utility-first CSS for rapid UI development
  • shadcn/ui - Reusable UI components
  • Elysia - Type-safe, high-performance framework
  • Bun - Runtime environment
  • Drizzle - TypeScript-first ORM
  • PostgreSQL - Database engine
  • Authentication - Better-Auth
  • Biome - Linting and formatting
  • Tauri - Build native desktop applications
  • Turborepo - Optimized monorepo build system

Getting Started

First, install the dependencies:

bun install

Database Setup

This project uses PostgreSQL with Drizzle ORM.

  1. Make sure you have a PostgreSQL database set up.

  2. Update your apps/server/.env file with your PostgreSQL connection details.

  3. Apply the schema to your database:

bun run db:push

Then, run the development server:

bun run dev

Open http://localhost:3001 in your browser to see the web application. The API is running at http://localhost:3000.

Project Structure

browngest/
├── apps/
│   ├── web/         # Frontend application (React + TanStack Router)
│   └── server/      # Backend API (Elysia)
├── packages/
│   ├── api/         # API layer / business logic
│   ├── auth/        # Authentication configuration & logic
│   └── db/          # Database schema & queries

Available Scripts

  • bun run dev: Start all applications in development mode
  • bun run build: Build all applications
  • bun run dev:web: Start only the web application
  • bun run dev:server: Start only the server
  • bun run check-types: Check TypeScript types across all apps
  • bun run db:push: Push schema changes to database
  • bun run db:studio: Open database studio UI
  • bun run check: Run Biome formatting and linting
  • cd apps/web && bun run desktop:dev: Start Tauri desktop app in development
  • cd apps/web && bun run desktop:build: Build Tauri desktop app