Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
1 change: 1 addition & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
buy_me_a_coffee: VoidClancy
2 changes: 1 addition & 1 deletion .github/workflows/sync-docs.yml
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
name: Sync Documentation to Phi Website
name: Sync Docs

on:
push:
Expand Down
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
.env
*.md
!docs/*.md
bin
*.db
.vscode
Expand Down
15 changes: 15 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
# Phi

Phi is a **compile-time ORM for Go** that mirrors the Prisma developer experience. It parses your `schema.prisma` file and generates a type-safe client with zero reflection at runtime.

## Features

- **Compile-time type safety** - queries, predicates, and results are generated from your schema, so mistakes fail at build time, not runtime.
- **Zero runtime overhead** - no reflection, no sidecars. Everything compiles down to standard `database/sql`.
- **Prisma-style schema** - keep writing `schema.prisma` and get types, builders, and migrations generated from it.
- **Multi-provider** - PostgreSQL, SQLite (for now).
- **Schema migrations** - generate and apply migrations straight from the CLI, with optional embedded migrations.

## Documentation

[https://phi-orm.vercel.app](https://phi-orm.vercel.app)
4 changes: 0 additions & 4 deletions mindmap.txt

This file was deleted.

Loading