Skip to content
This repository has been archived by the owner on Apr 3, 2024. It is now read-only.

Commit

Permalink
Rename module to github.com/temporalio/temporalite (#96)
Browse files Browse the repository at this point in the history
  • Loading branch information
jlegrone committed Jul 29, 2022
1 parent 593da1a commit a04abd3
Show file tree
Hide file tree
Showing 12 changed files with 17 additions and 17 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ This doc is for contributors to Temporalite (hopefully that's you!)
## Check out the code
Temporalite uses go modules, there is no dependency on `$GOPATH` variable. Clone the repo into the preferred location:
```bash
git clone https://github.com/DataDog/temporalite.git
git clone https://github.com/temporalio/temporalite.git
```

## Build
Expand Down
2 changes: 1 addition & 1 deletion LICENSE-3rdparty.csv
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ cloud.google.com/go/compute/metadata,,Apache-2.0,
cloud.google.com/go/iam,,Apache-2.0,
cloud.google.com/go/internal,,Apache-2.0,
cloud.google.com/go/storage,,Apache-2.0,
github.com/DataDog/temporalite,https://github.com/DataDog/temporalite,MIT,"Datadog, Inc."
github.com/temporalio/temporalite,https://github.com/temporalio/temporalite,MIT,"Datadog, Inc."
github.com/apache/thrift/lib/go/thrift,https://github.com/apache/thrift,Apache-2.0,
github.com/aws/aws-sdk-go,https://github.com/aws/aws-sdk-go,Apache-2.0,
github.com/aws/aws-sdk-go/internal/sync/singleflight,https://github.com/aws/aws-sdk-go,BSD-3-Clause,The Go Authors
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
# Temporalite

[![Go Reference](https://pkg.go.dev/badge/github.com/DataDog/temporalite.svg)](https://pkg.go.dev/github.com/DataDog/temporalite)
[![ci](https://github.com/DataDog/temporalite/actions/workflows/ci.yml/badge.svg)](https://github.com/DataDog/temporalite/actions/workflows/ci.yml)
[![Go Reference](https://pkg.go.dev/badge/github.com/temporalio/temporalite.svg)](https://pkg.go.dev/github.com/temporalio/temporalite)
[![ci](https://github.com/temporalio/temporalite/actions/workflows/ci.yml/badge.svg)](https://github.com/temporalio/temporalite/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/DataDog/temporalite/branch/main/graph/badge.svg)](https://codecov.io/gh/DataDog/temporalite)

> ⚠️ This project is experimental and not suitable for production use. ⚠️
Expand Down Expand Up @@ -32,7 +32,7 @@ Build from source using [go install](https://golang.org/ref/mod#go-install):
> Note: Go 1.18 or greater is currently required.
```bash
go install github.com/DataDog/temporalite/cmd/temporalite@latest
go install github.com/temporalio/temporalite/cmd/temporalite@latest
```

Start Temporal server:
Expand Down Expand Up @@ -93,7 +93,7 @@ temporalite start --ephemeral
The `temporalite` binary can be compiled to omit static assets for installations that will never use the UI:

```bash
go install -tags headless github.com/DataDog/temporalite/cmd/temporalite@latest
go install -tags headless github.com/temporalio/temporalite/cmd/temporalite@latest
```

The UI can also be disabled via a runtime flag:
Expand Down
4 changes: 2 additions & 2 deletions cmd/temporalite/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -22,8 +22,8 @@ import (
// Load sqlite storage driver
_ "go.temporal.io/server/common/persistence/sql/sqlplugin/sqlite"

"github.com/DataDog/temporalite"
"github.com/DataDog/temporalite/internal/liteconfig"
"github.com/temporalio/temporalite"
"github.com/temporalio/temporalite/internal/liteconfig"
)

// Name of the ui-server module, used in tests to verify that it is included/excluded
Expand Down
2 changes: 1 addition & 1 deletion cmd/temporalite/ui.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
uiconfig "github.com/temporalio/ui-server/v2/server/config"
uiserveroptions "github.com/temporalio/ui-server/v2/server/server_options"

"github.com/DataDog/temporalite"
"github.com/temporalio/temporalite"
)

func newUIOption(frontendAddr string, uiIP string, uiPort int) temporalite.ServerOption {
Expand Down
2 changes: 1 addition & 1 deletion cmd/temporalite/ui_disabled.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@

package main

import "github.com/DataDog/temporalite"
import "github.com/temporalio/temporalite"

func newUIOption(frontendAddr string, uiIP string, uiPort int) temporalite.ServerOption {
return nil
Expand Down
2 changes: 1 addition & 1 deletion go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/DataDog/temporalite
module github.com/temporalio/temporalite

go 1.18

Expand Down
2 changes: 1 addition & 1 deletion options.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ import (
"go.temporal.io/server/common/log"
"go.temporal.io/server/temporal"

"github.com/DataDog/temporalite/internal/liteconfig"
"github.com/temporalio/temporalite/internal/liteconfig"
)

// WithLogger overrides the default logger.
Expand Down
2 changes: 1 addition & 1 deletion server.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ import (
"go.temporal.io/server/schema/sqlite"
"go.temporal.io/server/temporal"

"github.com/DataDog/temporalite/internal/liteconfig"
"github.com/temporalio/temporalite/internal/liteconfig"
)

// Server wraps temporal.Server.
Expand Down
2 changes: 1 addition & 1 deletion temporaltest/options.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ import (
"go.temporal.io/sdk/client"
"go.temporal.io/sdk/worker"

"github.com/DataDog/temporalite"
"github.com/temporalio/temporalite"
)

type TestServerOption interface {
Expand Down
2 changes: 1 addition & 1 deletion temporaltest/server.go
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@ import (
"go.temporal.io/sdk/worker"
"go.temporal.io/server/common/log"

"github.com/DataDog/temporalite"
"github.com/temporalio/temporalite"
)

// A TestServer is a Temporal server listening on a system-chosen port on the
Expand Down
4 changes: 2 additions & 2 deletions temporaltest/server_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -13,8 +13,8 @@ import (
"go.temporal.io/sdk/client"
"go.temporal.io/sdk/worker"

"github.com/DataDog/temporalite/internal/examples/helloworld"
"github.com/DataDog/temporalite/temporaltest"
"github.com/temporalio/temporalite/internal/examples/helloworld"
"github.com/temporalio/temporalite/temporaltest"
)

// to be used in example code
Expand Down

0 comments on commit a04abd3

Please sign in to comment.