No description
- Svelte 46.6%
- TypeScript 37%
- Python 10.7%
- CSS 3.1%
- Dockerfile 2.1%
- Other 0.5%
|
|
||
|---|---|---|
| .forgejo/workflows | ||
| .vscode | ||
| .zed | ||
| apps | ||
| packages | ||
| .dockerignore | ||
| .gitignore | ||
| AGENTS.md | ||
| bts.jsonc | ||
| bun.lock | ||
| LICENSE | ||
| oxfmt.config.ts | ||
| oxlint.config.ts | ||
| package.json | ||
| README.md | ||
| tsconfig.json | ||
| turbo.json | ||
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.
-
Make sure you have a PostgreSQL database set up.
-
Update your
apps/web/.envfile with your PostgreSQL connection details. -
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
Available Scripts
bun run dev: Start all applications in development modebun run build: Build all applicationsbun run dev:web: Start only the web applicationbun run check-types: Check TypeScript types across all appsbun run db:push: Push schema changes to databasebun run db:generate: Generate database client/typesbun run db:migrate: Run database migrationsbun run db:studio: Open database studio UIbun run check: Run Oxlint and Oxfmt
