-
Notifications
You must be signed in to change notification settings - Fork 1
Remove moq submodule, use published packages #23
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
d2dcf10
e706cc8
2b8ccab
c2c469f
8c23b3c
c2bc1bd
ad70c0e
d692532
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -25,5 +25,9 @@ dist-ssr | |
|
|
||
| /target | ||
| /.direnv | ||
|
|
||
| # Generated relay keys/tokens | ||
| *.jwk | ||
| *.jwt | ||
| .terraform | ||
| .wrangler | ||
This file was deleted.
| Original file line number | Diff line number | Diff line change | ||||||||||||||||
|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|---|
|
|
@@ -7,8 +7,9 @@ default: | |||||||||||||||||
| just --list | ||||||||||||||||||
|
|
||||||||||||||||||
| dev: | ||||||||||||||||||
| just ../dev/relay/auth-key | ||||||||||||||||||
| bun wrangler d1 migrations apply DB --local | ||||||||||||||||||
| bun wrangler dev --var "RELAY_SECRET:$(cat ../moq/dev/root.jwk)" --var "RELAY_URL:http://${TAURI_DEV_HOST:-localhost}:4443" | ||||||||||||||||||
| bun wrangler dev --var "RELAY_SECRET:$(cat ../dev/relay/root.jwk)" --var "RELAY_URL:http://${TAURI_DEV_HOST:-localhost}:4443" | ||||||||||||||||||
|
Comment on lines
9
to
+12
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add an explicit preflight check for Running 💡 Suggested patch dev:
bun wrangler d1 migrations apply DB --local
- bun wrangler dev --var "RELAY_SECRET:$(cat ../dev/relay/root.jwk)" --var "RELAY_URL:http://${TAURI_DEV_HOST:-localhost}:4443"
+ test -f ../dev/relay/root.jwk || (echo "Missing ../dev/relay/root.jwk. Run: cd dev/relay && just auth-token" >&2; exit 1)
+ bun wrangler dev --var "RELAY_SECRET:$(cat ../dev/relay/root.jwk)" --var "RELAY_URL:http://${TAURI_DEV_HOST:-localhost}:4443"📝 Committable suggestion
Suggested change
🤖 Prompt for AI Agents |
||||||||||||||||||
|
|
||||||||||||||||||
| build: | ||||||||||||||||||
| bun run build | ||||||||||||||||||
|
|
||||||||||||||||||
| Original file line number | Diff line number | Diff line change |
|---|---|---|
| @@ -0,0 +1,4 @@ | ||
| declare module "*?worklet" { | ||
| const url: string; | ||
| export default url; | ||
| } |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Add a language identifier to the fenced project-structure block.
This currently trips markdownlint MD040.
💡 Suggested fix
Verify each finding against the current code and only fix it if needed.
In
@README.mdaround lines 18 - 23, The fenced code block that lists the projectstructure (the block containing the lines starting with "app/ Web
frontend (SolidJS + Vite)", "api/ Backend API (Cloudflare Workers +
Hono)", "native/ Desktop/mobile app (Tauri v2)", and "dev/relay/ Local
relay server config") needs a language identifier to satisfy markdownlint MD040;
update the opening fence from
totext so the block becomes a labeledplaintext code block.