No description
  • TypeScript 99.3%
  • CSS 0.6%
Find a file
Repository files (latest commit first)
Filename Latest commit message Latest commit date
2026-08-20 13:27:40 +01:00
.vscode Replace Biome with Oxfmt + Oxlint (#34) 2026-05-17 15:47:21 +00:00
.zed Replace Biome with Oxfmt + Oxlint (#34) 2026-05-17 15:47:21 +00:00
apps feat: add ws to proposals, reports, and field works 2026-08-20 13:27:40 +01:00
packages Field works project details tab (#38) 2026-08-13 21:33:02 +00:00
.gitattributes Sharepoint webhook routes (#22) 2026-03-03 14:39:31 +00:00
.gitignore initial commit 2025-11-08 20:16:33 +00:00
AGENTS.md Replace Biome with Oxfmt + Oxlint (#34) 2026-05-17 15:47:21 +00:00
bun.lock Field works project details tab (#38) 2026-08-13 21:33:02 +00:00
bunfig.toml initial commit 2025-11-08 20:16:33 +00:00
oxfmt.config.ts style: add eslint-plugin-perfectionist 2026-07-14 02:58:44 +01:00
oxlint.config.ts chore: oxlint rules 2026-08-13 22:37:09 +01:00
package.json style: add eslint-plugin-perfectionist 2026-07-14 02:58:44 +01:00
README.md Replace Biome with Oxfmt + Oxlint (#34) 2026-05-17 15:47:21 +00:00
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