2025-01-18 21:40:32 +00:00
|
|
|
_frontend-dev:
|
|
|
|
|
cd ui && pnpm run dev
|
2025-04-10 05:43:57 +00:00
|
|
|
|
|
|
|
|
test-frontend:
|
|
|
|
|
cd ui && pnpm run test
|
2025-04-10 06:15:27 +00:00
|
|
|
|
|
|
|
|
test-frontend-watch:
|
|
|
|
|
cd ui && pnpm run test:watch
|
2025-04-10 05:43:57 +00:00
|
|
|
|
|
|
|
|
typecheck:
|
2025-10-10 08:17:52 +00:00
|
|
|
cd ui && pnpm run typecheck
|
2025-01-18 21:40:32 +00:00
|
|
|
|
2025-07-09 07:40:30 +00:00
|
|
|
build-frontend:
|
|
|
|
|
cd ui && pnpm run build
|
|
|
|
|
|
2025-06-28 12:50:32 +00:00
|
|
|
_api-dev:
|
|
|
|
|
cd api && npm run dev
|
2025-01-18 21:40:32 +00:00
|
|
|
|
2025-10-10 08:23:30 +00:00
|
|
|
test-api:
|
|
|
|
|
cd api && npm run test
|
|
|
|
|
|
2025-10-11 07:56:33 +00:00
|
|
|
# Daily workflows
|
|
|
|
|
|
2025-01-18 21:40:32 +00:00
|
|
|
dev:
|
2025-07-03 19:42:49 +00:00
|
|
|
just _api-dev & (just _frontend-dev)
|
2025-10-11 08:29:45 +00:00
|
|
|
|
|
|
|
|
push-and-create-pr:
|
|
|
|
|
git push && gh pr create --fill && gh pr checks
|
|
|
|
|
|
|
|
|
|
view-checks:
|
|
|
|
|
gh pr checks
|
|
|
|
|
|
|
|
|
|
merge-to-main:
|
|
|
|
|
gh pr merge -m
|
2025-07-03 19:42:49 +00:00
|
|
|
|
2025-10-11 07:56:33 +00:00
|
|
|
# Types recipes
|
|
|
|
|
|
2025-07-03 19:42:49 +00:00
|
|
|
update-types:
|
2025-10-25 19:21:04 +00:00
|
|
|
npx supabase gen types typescript --project-id "mhcafqvzbrrwvahpvvzd" --schema public > packages/shared/src/types/database.types.ts && cp packages/shared/src/types/database.types.ts api/src/database.types.ts && cp packages/shared/src/types/database.types.ts xtablo-expo/lib/database.types.ts
|
2025-07-14 20:37:37 +00:00
|
|
|
|
2025-10-11 07:56:33 +00:00
|
|
|
# Expo recipes
|
|
|
|
|
|
2025-07-14 20:37:37 +00:00
|
|
|
expo-install-all:
|
2025-07-22 05:52:06 +00:00
|
|
|
cd xtablo-expo && npx expo install
|
2025-07-14 20:37:37 +00:00
|
|
|
|
2025-07-16 20:28:20 +00:00
|
|
|
expo-install +package:
|
2025-07-22 05:52:06 +00:00
|
|
|
cd xtablo-expo && npx expo install {{package}}
|
2025-07-14 20:37:37 +00:00
|
|
|
|
2025-07-16 20:28:20 +00:00
|
|
|
expo-start *args:
|
|
|
|
|
cd xtablo-expo && npx expo start {{args}}
|
2025-07-22 19:55:30 +00:00
|
|
|
|
|
|
|
|
build-expo:
|
|
|
|
|
cd xtablo-expo && eas build --platform all
|