Skip to content
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

Init reporter #655

Merged
merged 13 commits into from
Sep 3, 2024
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
module github.com/stateful/runme/v3

go 1.22
go 1.22.0
Copy link
Contributor Author

@peraltafederico peraltafederico Aug 19, 2024

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Needed to make it work in Linux


// replace github.com/stateful/godotenv => ../godotenv

Expand Down
3 changes: 3 additions & 0 deletions internal/cmd/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -20,9 +20,11 @@ import (
runmetls "github.com/stateful/runme/v3/internal/tls"
parserv1 "github.com/stateful/runme/v3/pkg/api/gen/proto/go/runme/parser/v1"
projectv1 "github.com/stateful/runme/v3/pkg/api/gen/proto/go/runme/project/v1"
reporterv1 "github.com/stateful/runme/v3/pkg/api/gen/proto/go/runme/reporter/v1"
runnerv1 "github.com/stateful/runme/v3/pkg/api/gen/proto/go/runme/runner/v1"
runnerv2alpha1 "github.com/stateful/runme/v3/pkg/api/gen/proto/go/runme/runner/v2alpha1"
"github.com/stateful/runme/v3/pkg/document/editor/editorservice"
"github.com/stateful/runme/v3/pkg/document/editor/reporterservice"
)

func serverCmd() *cobra.Command {
Expand Down Expand Up @@ -105,6 +107,7 @@ The kernel is used to run long running processes like shells and interacting wit
)
parserv1.RegisterParserServiceServer(server, editorservice.NewParserServiceServer(logger))
projectv1.RegisterProjectServiceServer(server, projectservice.NewProjectServiceServer(logger))
reporterv1.RegisterReporterServiceServer(server, reporterservice.NewReporterServiceServer(logger))
if enableRunner {
runnerServicev1, err := runner.NewRunnerService(logger)
if err != nil {
Expand Down
Loading
Loading