Skip to content
Open
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
7 changes: 7 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -4,3 +4,10 @@
# project things
.venv
.ruff_cache

# frontend things
src/pybama_org/components/frontend/public
src/pybama_org/components/frontend/hot
src/pybama_org/components/frontend/static
.vite
public/
8 changes: 8 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
install:
@rye sync --force
@rye run app assets build
@rye run app assets install

lint:
@rye lint --fix
Expand All @@ -13,3 +15,9 @@ fmt-check:

test:
@rye test

run:
@rye run app run --debug

docs-serve:
@echo "not implemented"\
17 changes: 17 additions & 0 deletions components.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
{
"$schema": "https://ui.shadcn.com/schema.json",
"style": "default",
"rsc": true,
"tsx": true,
"tailwind": {
"config": "tailwind.config.js",
"css": "resources/styles.css",
"baseColor": "slate",
"cssVariables": true,
"prefix": ""
},
"aliases": {
"components": "@/components",
"utils": "@/lib/utils"
}
}
Loading