-
-
Notifications
You must be signed in to change notification settings - Fork 26
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
Add one click launcher #106
base: main
Are you sure you want to change the base?
Changes from all commits
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 |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
"description": "Nestri's core", | ||
"scripts": { | ||
"dev": "wrangler dev src/index.ts", | ||
"deploy": "wrangler deploy --minify src/index.ts" | ||
"deploy": "wrangler deploy --minify src/index.ts", | ||
"launch": "sst start" | ||
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. Unnecessary command |
||
}, | ||
"dependencies": { | ||
"hono": "^4.5.5" | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -26,7 +26,8 @@ | |
"preview": "qwik build preview && vite preview --open", | ||
"serve": "wrangler pages dev ./dist --compatibility-flags=nodejs_als", | ||
"start": "vite --open --mode ssr", | ||
"qwik": "qwik" | ||
"qwik": "qwik", | ||
"launch": "sst start" | ||
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. Nope, I believe you need to edit the |
||
}, | ||
"devDependencies": { | ||
"@builder.io/qwik": "^1.8.0", | ||
|
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,7 +5,8 @@ | |
"build": "turbo build", | ||
"dev": "turbo dev", | ||
"format": "prettier --write \"**/*.{ts,tsx,md}\"", | ||
"lint": "turbo lint" | ||
"lint": "turbo lint", | ||
"launch": "sst start" | ||
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. Maybe? But not quite there |
||
}, | ||
"devDependencies": { | ||
"@cloudflare/workers-types": "4.20240821.1", | ||
|
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.
This won't work... We need the
qwik
command. Please visit https://qwik.dev/ for more information