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
8 changes: 8 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@
# Environment variables
# Copy to .env and fill in values before running

# Tauri development host (set automatically by Tauri CLI when using a dev server)
# TAURI_DEV_HOST=

# Optional: custom Vite cache directory (defaults to node_modules/.vite)
# VITE_CACHE_DIR=
28 changes: 28 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,28 @@
.PHONY: install build lint test dev clean tauri-dev tauri-build type-check

install:
pnpm install

build:
pnpm run build

lint:
pnpm run lint

test:
pnpm test

dev:
pnpm run dev

tauri-dev:
pnpm run tauri:dev

tauri-build:
pnpm run tauri:build

type-check:
pnpm run type-check

clean:
rm -rf dist coverage node_modules
Loading