weaver icon indicating copy to clipboard operation
weaver copied to clipboard

Programming framework for writing and deploying cloud applications.

Results 101 weaver issues
Sort by recently updated
recently updated
newest added

Closes #90 This PR completes the work to enable the `errcheck` linter on non-test files. There are two changes: 1. handle and print errors related to serving the perfetto backend...

Assuming I am like this now, ```go package main import ( "context" "fmt" "github.com/ServiceWeaver/weaver" ) type Adder interface { Add(context.Context, int, int) (int, error) } type adder struct { weaver.Implements[Adder]...

When i use go install github.com/ServiceWeaver/weaver-gke/cmd/weaver-gke-local@latest and go install github.com/ServiceWeaver/weaver/cmd/weaver@latest , to use this tutorial . Version "eb99fc75-e9d8-4288-bc73-65523bdb3d5a" of app "hello" started successfully. Note that stopping this binary will not...

the doc has $ signs in the beginning. While its visually appealing it makes copying the command difficult. Either we remove the dollar sign all the commands or make the...

Before this PR, our website had no padding at the bottom. This meant that the end of page was at the very bottom of the screen. This made reading the...

Before this PR, a GitHub action built the code whenever it was pushed or whenever a pull request was created. If you pushed a branch and opened a pull request...

I often run `get -u ./...` which updates this package all the time, but it has a breaking change introducing generics. quite straightforward to fix, so, it seems better to...

I am using Service Weaver with SQLite The current examples have a SQLTE DB, but we could have a replicates SQLITE using the following: https://github.com/pocketbase/pocketbase?tab=readme-ov-file#use-as-standalone-app requires a tiny import and...