-
Hey @Howard3 , we're working on something similar and we've made some progress along the lines of what you have done. I stumbled over go-chi a couple of days ago. We're using gofiber/supabase/htmx/hyp…
-
In some environments such as Cloudflare Workers you can't use `file:` URLs because they don't let you use the filesystem.
Instead, we could connect to `turso dev` running locally and have an option…
-
Assuming the user is already signed in with a token that works:
```
$ turso auth token
[EXISTING TOKEN]
$ export TURSO_API_TOKEN=[EXISTING TOKEN]
$ turso auth logout
Logged out.
$ turso…
-
We currently have the plan limits hard-coded into the CLI. Let's add a new API for this and use that.
-
I was playing with Python client and I learned that pragma statements are not working. Same with Go client or the Turso CLI:
```go
_, err = db.ExecContext(ctx, "PRAGMA foreign_keys = OFF")
```
…
-
Here is are a couple examples that shows less helpful error messages:
```
$ turso db show d1
Error: failed to get database listing: 401 Unauthorized
```
```
$ turso db create foo
Error: cou…
-
I was trying to connect to turso database from a go app
```
package main
import (
"database/sql"
"fmt"
"net/http"
"os"
)
func main() {
port := os.Getenv("PORT")
if port == "" {
…
-
See https://github.com/rishi-raj-jain/nuxt-turso-edgio-example
-
Discord thread: https://discord.com/channels/933071162680958986/1100593117075345449/1100593117075345449
Running this code on Cloudflare Workers local dev hangs forever
```typescript
import { cr…
-
`turso db list` is not really useful when there are no DBs to be listed.
```
$ turso db list
NAME LOCATIONS URL
```
What about telling users to create a database?
```
$ turso db …