No description
  • Svelte 46.6%
  • TypeScript 37%
  • Python 10.7%
  • CSS 3.1%
  • Dockerfile 2.1%
  • Other 0.5%
Find a file
iRazz 974f1b532e
All checks were successful
Container Image / build-and-push (push) Successful in 59s
add workflow
2026-05-30 00:19:06 +03:00
.forgejo/workflows add workflow 2026-05-30 00:19:06 +03:00
.vscode initial commit 2026-05-12 15:20:00 +03:00
.zed initial commit 2026-05-12 15:20:00 +03:00
apps feat: add privacy policy 2026-05-30 00:15:05 +03:00
packages to prod 2026-05-14 11:24:41 +03:00
.dockerignore to prod 2026-05-14 11:24:41 +03:00
.gitignore initial commit 2026-05-12 15:20:00 +03:00
AGENTS.md initial commit 2026-05-12 15:20:00 +03:00
bts.jsonc initial commit 2026-05-12 15:20:00 +03:00
bun.lock to prod 2026-05-14 11:24:41 +03:00
LICENSE Update LICENSE 2026-05-14 13:14:39 +01:00
oxfmt.config.ts initial commit 2026-05-12 15:20:00 +03:00
oxlint.config.ts disable oxlint func-style rule and make root route redirect to produse 2026-05-12 23:06:31 +03:00
package.json initial commit 2026-05-12 15:20:00 +03:00
README.md Update README.md 2026-05-14 14:41:22 +01:00
tsconfig.json initial commit 2026-05-12 15:20:00 +03:00
turbo.json initial commit 2026-05-12 15:20:00 +03:00

rechemat.ro

Rechemat.ro este un serviciu gratuit oferit de noi care face experienta ANSVSA mai placuta.

Features

  • TypeScript - For type safety and improved developer experience
  • SvelteKit - Web framework for building Svelte apps
  • TailwindCSS - Utility-first CSS for rapid UI development
  • oRPC - End-to-end type-safe APIs with OpenAPI integration
  • Drizzle - TypeScript-first ORM
  • PostgreSQL - Database engine
  • Authentication - Better-Auth
  • Oxlint - Oxlint + Oxfmt (linting & formatting)
  • 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/web/.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

Project Structure

rechemat.ro/
├── apps/
│   ├── scraper/     # Scrapes ansvsa for new data and extracts it using the extractor
│   ├── extractor/   # uses Groq to parse pdfs
│   └── web/         # Fullstack application (SvelteKit)
├── packages/
│   ├── api/         # API layer / business logic
│   ├── auth/        # Authentication configuration & logic
│   └── db/          # Database schema & queries

architecture

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 check-types: Check TypeScript types across all apps
  • bun run db:push: Push schema changes to database
  • bun run db:generate: Generate database client/types
  • bun run db:migrate: Run database migrations
  • bun run db:studio: Open database studio UI
  • bun run check: Run Oxlint and Oxfmt