Skip to content

Commit

Permalink
build: migrate from pipenv to uv
Browse files Browse the repository at this point in the history
  • Loading branch information
haxgun committed Dec 3, 2024
1 parent 3b8d776 commit cdd39d9
Show file tree
Hide file tree
Showing 4 changed files with 21 additions and 27 deletions.
2 changes: 0 additions & 2 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@
sqlite.db
.vscode/*
!.vscode/settings.json
!.vscode/tasks.json
Expand Down Expand Up @@ -70,4 +69,3 @@ coverage
package-lock.json
pnpm-lock.yaml
.env
/backend/Pipfile.lock
3 changes: 3 additions & 0 deletions backend/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
uv.lock
sqlite.db
.venv
25 changes: 0 additions & 25 deletions backend/Pipfile

This file was deleted.

18 changes: 18 additions & 0 deletions backend/pyproject.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
[project]
name = "backend"
version = "0.1.0"
description = ""
requires-python = ">=3.13"
dependencies = [
"aiosqlite>=0.20.0",
"alembic>=1.14.0",
"asyncpg>=0.30.0",
"fastapi[standard]>=0.115.5",
"greenlet>=3.1.1",
"psycopg2-binary>=2.9.10",
"python-dotenv>=1.0.1",
"sqlalchemy>=2.0.36",
"sqlmodel>=0.0.22",
"uuid>=1.30",
"uvicorn>=0.32.1",
]

0 comments on commit cdd39d9

Please sign in to comment.