-
Notifications
You must be signed in to change notification settings - Fork 41
chore: add more platform demos #1000
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
chore: add more platform demos #1000
Conversation
"dependencies": { | ||
"@hono/node-server": "^1.14.4", | ||
"@rivetkit/memory": "workspace:0.9.0-rc.1", | ||
"@rivetkit/react": "workspace:0.9.0-rc.1", | ||
"better-auth": "^1.0.1", | ||
"hono": "^4.7.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, |
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.
The dependencies
section is missing the @better-auth/sqlite
package which is imported in src/backend/auth.ts
. This will cause a runtime error when the application tries to use the SQLite adapter. Please add @better-auth/sqlite
to the dependencies in package.json
.
"dependencies": { | |
"@hono/node-server": "^1.14.4", | |
"@rivetkit/memory": "workspace:0.9.0-rc.1", | |
"@rivetkit/react": "workspace:0.9.0-rc.1", | |
"better-auth": "^1.0.1", | |
"hono": "^4.7.0", | |
"react": "^18.2.0", | |
"react-dom": "^18.2.0" | |
}, | |
"dependencies": { | |
"@better-auth/sqlite": "^1.0.0", | |
"@hono/node-server": "^1.14.4", | |
"@rivetkit/memory": "workspace:0.9.0-rc.1", | |
"@rivetkit/react": "workspace:0.9.0-rc.1", | |
"better-auth": "^1.0.1", | |
"hono": "^4.7.0", | |
"react": "^18.2.0", | |
"react-dom": "^18.2.0" | |
}, |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
"dependencies": { | ||
"@hono/node-server": "^1.14.4", | ||
"@rivetkit/memory": "workspace:0.9.0-rc.1", | ||
"@rivetkit/react": "workspace:0.9.0-rc.1", | ||
"better-auth": "^1.0.1", | ||
"hono": "^4.7.0", | ||
"react": "^18.2.0", | ||
"react-dom": "^18.2.0" | ||
}, |
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.
The better-sqlite3
package is imported in src/backend/auth.ts
but missing from the dependencies section in package.json
. This will cause a runtime error when attempting to create a new SQLite database. Please add better-sqlite3
to the dependencies to ensure the application functions correctly.
"dependencies": { | |
"@hono/node-server": "^1.14.4", | |
"@rivetkit/memory": "workspace:0.9.0-rc.1", | |
"@rivetkit/react": "workspace:0.9.0-rc.1", | |
"better-auth": "^1.0.1", | |
"hono": "^4.7.0", | |
"react": "^18.2.0", | |
"react-dom": "^18.2.0" | |
}, | |
"dependencies": { | |
"@hono/node-server": "^1.14.4", | |
"@rivetkit/memory": "workspace:0.9.0-rc.1", | |
"@rivetkit/react": "workspace:0.9.0-rc.1", | |
"better-auth": "^1.0.1", | |
"better-sqlite3": "^8.6.0", | |
"hono": "^4.7.0", | |
"react": "^18.2.0", | |
"react-dom": "^18.2.0" | |
}, |
Spotted by Diamond
Is this helpful? React 👍 or 👎 to let us know.
3903be8
to
3487682
Compare
3487682
to
938d96f
Compare
3b1c0c5
to
1d5e4fd
Compare
rivetkit
@rivetkit/file-system
@rivetkit/memory
@rivetkit/redis
@rivetkit/framework-base
@rivetkit/react
@rivetkit/cloudflare-workers
@rivetkit/nodejs
@rivetkit/rivet
commit: |
1d5e4fd
to
25fcfdf
Compare
e0fb125
to
65c3659
Compare
65c3659
to
f0bf4f5
Compare
25fcfdf
to
1f22684
Compare
0d8672d
to
48e271d
Compare
25fcfdf
to
1f22684
Compare
1f22684
to
25fcfdf
Compare
48e271d
to
0d8672d
Compare
Merge activity
|
No description provided.