Skip to content

Commit

Permalink
Renaming to an organization
Browse files Browse the repository at this point in the history
  • Loading branch information
madflojo committed Oct 1, 2023
1 parent addf194 commit 2740a68
Show file tree
Hide file tree
Showing 48 changed files with 119 additions and 145 deletions.
2 changes: 1 addition & 1 deletion CONTRIBUTING.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ Thank you for considering contributing to Tarmac. The time, skills, and perspect

## How can I contribute?

Bugs, design proposals, feature requests, and questions are all welcome and can be submitted by creating a [Github Issue](https://github.com/madflojo/tarmac/issues/new/choose) using one of the templates provided. Please provide as much detail as you can.
Bugs, design proposals, feature requests, and questions are all welcome and can be submitted by creating a [Github Issue](https://github.com/tarmac-project/tarmac/issues/new/choose) using one of the templates provided. Please provide as much detail as you can.

Code contributions are welcome as well! In an effort to keep this project tidy, please:

Expand Down
10 changes: 5 additions & 5 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,18 +1,18 @@
FROM golang:latest

ADD . /go/src/github.com/madflojo/tarmac
WORKDIR /go/src/github.com/madflojo/tarmac/
ADD . /go/src/github.com/tarmac-project/tarmac
WORKDIR /go/src/github.com/tarmac-project/tarmac/
RUN go mod tidy
WORKDIR /go/src/github.com/madflojo/tarmac/cmd/tarmac
WORKDIR /go/src/github.com/tarmac-project/tarmac/cmd/tarmac
RUN go install -v .
WORKDIR /go/src/github.com/madflojo/tarmac/
WORKDIR /go/src/github.com/tarmac-project/tarmac/

FROM ubuntu:latest
RUN install -d -m 0755 -o 1000 -g 500 /app/tarmac
# Create Data directory for local data storage, override with volume mounts to retain data
RUN install -d -m 0755 -o 1000 -g 500 /data/tarmac
COPY --chown=1000:500 --from=0 /go/bin/tarmac /app/tarmac/
COPY --chown=1000:500 --from=0 /go/src/github.com/madflojo/tarmac/docker-entrypoint.sh /app/tarmac/
COPY --chown=1000:500 --from=0 /go/src/github.com/tarmac-project/tarmac/docker-entrypoint.sh /app/tarmac/
RUN chmod 755 /app/tarmac/tarmac /app/tarmac/docker-entrypoint.sh
USER 1000

Expand Down
2 changes: 1 addition & 1 deletion cmd/tarmac/main.go
Original file line number Diff line number Diff line change
@@ -1,7 +1,7 @@
package main

import (
"github.com/madflojo/tarmac/pkg/app"
"github.com/tarmac-project/tarmac/pkg/app"
"github.com/sirupsen/logrus"
"github.com/spf13/viper"
_ "github.com/spf13/viper/remote"
Expand Down
32 changes: 16 additions & 16 deletions dev-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -40,10 +40,10 @@ services:
- consulator
tests-base:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -skip "TestFullService/.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -60,10 +60,10 @@ services:
- mysql
tests-inmemory:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/In-Memory.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -78,10 +78,10 @@ services:
- consulator
tests-boltdb:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/BoltDB.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -96,10 +96,10 @@ services:
- consulator
tests-redis:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/Redis.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -115,10 +115,10 @@ services:
- consulator
tests-cassandra:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/Cassandra.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -135,10 +135,10 @@ services:
- consulator
tests-mysql:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/MySQL.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -154,10 +154,10 @@ services:
- consulator
tests-postgres:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -race -covermode=atomic -coverprofile=/tmp/coverage/coverage.out -run "TestFullService/Postgres.*" ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand All @@ -173,10 +173,10 @@ services:
- consulator
benchmarks:
image: golang:latest
working_dir: /go/src/github.com/madflojo/tarmac
working_dir: /go/src/github.com/tarmac-project/tarmac
entrypoint: go test -v -run=XXX -bench=. ./...
volumes:
- "./:/go/src/github.com/madflojo/tarmac"
- "./:/go/src/github.com/tarmac-project/tarmac"
- "./coverage:/tmp/coverage"
- "./example:/example"
- "./testdata:/testdata"
Expand Down
8 changes: 4 additions & 4 deletions docs/README.md
Original file line number Diff line number Diff line change
Expand Up @@ -2,10 +2,10 @@

![](tarmac-logo.png)

[![PkgGoDev](https://pkg.go.dev/badge/github.com/madflojo/tarmac/pkg/sdk)](https://pkg.go.dev/github.com/madflojo/tarmac/pkg/sdk)
[![PkgGoDev](https://pkg.go.dev/badge/github.com/tarmac-project/tarmac/pkg/sdk)](https://pkg.go.dev/github.com/tarmac-project/tarmac/pkg/sdk)
[![Documentation](https://img.shields.io/badge/docs-latest-blue)](https://tarmac.gitbook.io/tarmac/)
[![Build Status](https://github.com/madflojo/tarmac/actions/workflows/build.yml/badge.svg)](https://github.com/madflojo/tarmac/actions/workflows/build.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/madflojo/tarmac)](https://goreportcard.com/report/github.com/madflojo/tarmac)
[![Build Status](https://github.com/tarmac-project/tarmac/actions/workflows/build.yml/badge.svg)](https://github.com/tarmac-project/tarmac/actions/workflows/build.yml)
[![Go Report Card](https://goreportcard.com/badge/github.com/tarmac-project/tarmac)](https://goreportcard.com/report/github.com/tarmac-project/tarmac)
[![Coverage Status](https://coveralls.io/repos/github/madflojo/tarmac/badge.svg?branch=master)](https://coveralls.io/github/madflojo/tarmac?branch=master)

## Framework for writing functions, microservices, or monoliths with Web Assembly
Expand All @@ -25,7 +25,7 @@ package main

import (
"fmt"
"github.com/madflojo/tarmac/pkg/sdk"
"github.com/tarmac-project/tarmac/pkg/sdk"
)

var tarmac *sdk.Tarmac
Expand Down
4 changes: 2 additions & 2 deletions docs/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -34,7 +34,7 @@

## WebAssembly Developer Resources

* [Go SDK](https://pkg.go.dev/github.com/madflojo/tarmac/pkg/sdk)
* [Go SDK](https://pkg.go.dev/github.com/tarmac-project/tarmac/pkg/sdk)
* [Toolkit](developers/toolkit.md)
* [GitHub](https://github.com/madflojo/tarmac)
* [GitHub](https://github.com/tarmac-project/tarmac)

10 changes: 5 additions & 5 deletions docs/developers/toolkit.md
Original file line number Diff line number Diff line change
Expand Up @@ -58,10 +58,10 @@ package main

import (
// Import Tarmac Callbacks Router and Desired Callback Capabilities
"github.com/madflojo/tarmac/pkg/callbacks"
"github.com/madflojo/tarmac/pkg/callbacks/logging"
"github.com/tarmac-project/tarmac/pkg/callbacks"
"github.com/tarmac-project/tarmac/pkg/callbacks/logging"
// Import Tarmac WASM Engine
"github.com/madflojo/tarmac/wasm"
"github.com/tarmac-project/tarmac/wasm"
"github.com/sirupsen/logrus"
)

Expand Down Expand Up @@ -120,6 +120,6 @@ func main() {

The example creates the Callback router before loading the WASM engine, and desired functions must also be loaded and registered before starting the WASM engine.

Each Callback capability is unique in its configuration; however, documentation is available via [package documentation](https://pkg.go.dev/github.com/madflojo/tarmac/pkg/callbacks).
Each Callback capability is unique in its configuration; however, documentation is available via [package documentation](https://pkg.go.dev/github.com/tarmac-project/tarmac/pkg/callbacks).

We have a fully working WASM host that can run WASM guests and extend host callback capabilities with the above. For more complex examples, check out the [examples repository](https://github.com/madflojo/tarmac/tree/master/example).
We have a fully working WASM host that can run WASM guests and extend host callback capabilities with the above. For more complex examples, check out the [examples repository](https://github.com/tarmac-project/tarmac/tree/master/example).
4 changes: 2 additions & 2 deletions docs/wasm-functions/go.md
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ Within our `main.go` file; we will need first to import the Tarmac Go SDK.
package main

import (
"github.com/madflojo/tarmac/pkg/sdk"
"github.com/tarmac-project/tarmac/pkg/sdk"
)
```

Expand Down Expand Up @@ -93,7 +93,7 @@ package main

import (
"fmt"
"github.com/madflojo/tarmac/pkg/sdk"
"github.com/tarmac-project/tarmac/pkg/sdk"
)

var tarmac *sdk.Tarmac
Expand Down
4 changes: 2 additions & 2 deletions example/echo/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/madflojo/tarmac/example/echo/go
module github.com/tarmac-project/tarmac/example/echo/go

go 1.20

require github.com/madflojo/tarmac/pkg/sdk v0.4.0
require github.com/tarmac-project/tarmac/pkg/sdk v0.4.0

require (
github.com/valyala/fastjson v1.6.4 // indirect
Expand Down
4 changes: 2 additions & 2 deletions example/echo/go/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/madflojo/tarmac/pkg/sdk v0.4.0 h1:6wyCLYDs1srQGEO8Sew/VyvjpAJCdoqSengaz/JbmA0=
github.com/madflojo/tarmac/pkg/sdk v0.4.0/go.mod h1:mUxc4sw0vpBVcJFyCXpSqeWr6MwpvnZS33bgqOCI1N8=
github.com/tarmac-project/tarmac/pkg/sdk v0.4.0 h1:6wyCLYDs1srQGEO8Sew/VyvjpAJCdoqSengaz/JbmA0=
github.com/tarmac-project/tarmac/pkg/sdk v0.4.0/go.mod h1:mUxc4sw0vpBVcJFyCXpSqeWr6MwpvnZS33bgqOCI1N8=
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 h1:xoIK0ctDddBMnc74udxJYBqlo9Ylnsp1waqjLsnef20=
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
Expand Down
2 changes: 1 addition & 1 deletion example/echo/go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package main

import (
"fmt"
"github.com/madflojo/tarmac/pkg/sdk"
"github.com/tarmac-project/tarmac/pkg/sdk"
)

// tarmac provides an interface for executing host capabilities such as Logging, KVStore, etc.
Expand Down
4 changes: 2 additions & 2 deletions example/tac/go/go.mod
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
module github.com/madflojo/tarmac/example/tac/go
module github.com/tarmac-project/tarmac/example/tac/go

go 1.20

require github.com/madflojo/tarmac/pkg/sdk v0.4.0
require github.com/tarmac-project/tarmac/pkg/sdk v0.4.0

require (
github.com/valyala/fastjson v1.6.4 // indirect
Expand Down
4 changes: 2 additions & 2 deletions example/tac/go/go.sum
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
github.com/madflojo/tarmac/pkg/sdk v0.4.0 h1:6wyCLYDs1srQGEO8Sew/VyvjpAJCdoqSengaz/JbmA0=
github.com/madflojo/tarmac/pkg/sdk v0.4.0/go.mod h1:mUxc4sw0vpBVcJFyCXpSqeWr6MwpvnZS33bgqOCI1N8=
github.com/tarmac-project/tarmac/pkg/sdk v0.4.0 h1:6wyCLYDs1srQGEO8Sew/VyvjpAJCdoqSengaz/JbmA0=
github.com/tarmac-project/tarmac/pkg/sdk v0.4.0/go.mod h1:mUxc4sw0vpBVcJFyCXpSqeWr6MwpvnZS33bgqOCI1N8=
github.com/pquerna/ffjson v0.0.0-20190930134022-aa0246cd15f7 h1:xoIK0ctDddBMnc74udxJYBqlo9Ylnsp1waqjLsnef20=
github.com/valyala/fastjson v1.6.4 h1:uAUNq9Z6ymTgGhcm0UynUAB6tlbakBrz6CQFax3BXVQ=
github.com/valyala/fastjson v1.6.4/go.mod h1:CLCAqky6SMuOcxStkYQvblddUtoRxhYMGLrsQns1aXY=
Expand Down
2 changes: 1 addition & 1 deletion example/tac/go/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ package main

import (
"fmt"
"github.com/madflojo/tarmac/pkg/sdk"
"github.com/tarmac-project/tarmac/pkg/sdk"
)

var tarmac *sdk.Tarmac
Expand Down
4 changes: 2 additions & 2 deletions example/toolkit/go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
module github.com/madflojo/tarmac/example/toolkit
module github.com/tarmac-project/tarmac/example/toolkit

go 1.20

require (
github.com/madflojo/tarmac v0.4.0
github.com/tarmac-project/tarmac v0.4.0
github.com/sirupsen/logrus v1.9.0
)

Expand Down
4 changes: 2 additions & 2 deletions example/toolkit/go.sum
Original file line number Diff line number Diff line change
Expand Up @@ -4,8 +4,8 @@ github.com/bytecodealliance/wasmtime-go v1.0.0 h1:9u9gqaUiaJeN5IoD1L7egD8atOnTGy
github.com/davecgh/go-spew v1.1.0/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/davecgh/go-spew v1.1.1 h1:vj9j/u1bqnvCEfJOwUhtlOARqs3+rkHYY13jYWTU97c=
github.com/davecgh/go-spew v1.1.1/go.mod h1:J7Y8YcW2NihsgmVo/mv3lAwl/skON4iLHjSsI+c5H38=
github.com/madflojo/tarmac v0.4.0 h1:DDvKUKYVelpsvc25ABkzGxVAI2ds8+h4EocS5ZH8CEc=
github.com/madflojo/tarmac v0.4.0/go.mod h1:xXfc3Eh5CQUHV47IVWhrzM7+se7vlfsUXZQOcAA0b9o=
github.com/tarmac-project/tarmac v0.4.0 h1:DDvKUKYVelpsvc25ABkzGxVAI2ds8+h4EocS5ZH8CEc=
github.com/tarmac-project/tarmac v0.4.0/go.mod h1:xXfc3Eh5CQUHV47IVWhrzM7+se7vlfsUXZQOcAA0b9o=
github.com/philhofer/fwd v1.1.1/go.mod h1:gk3iGcWd9+svBvR0sR+KPcfE+RNWozjowpeBVG3ZVNU=
github.com/pmezard/go-difflib v1.0.0 h1:4DBwDE0NGyQoBHbLQYPwSUPoCMWR5BEzIk/f1lZbAQM=
github.com/pmezard/go-difflib v1.0.0/go.mod h1:iKH77koFhYxTK1pcRnkKkqfTogsbg7gZNVY4sRDYZ/4=
Expand Down
6 changes: 3 additions & 3 deletions example/toolkit/main.go
Original file line number Diff line number Diff line change
Expand Up @@ -6,10 +6,10 @@ package main

import (
// Import Tarmac Callbacks Router and Desired Callback Capabilities
"github.com/madflojo/tarmac/pkg/callbacks"
"github.com/madflojo/tarmac/pkg/callbacks/logging"
"github.com/tarmac-project/tarmac/pkg/callbacks"
"github.com/tarmac-project/tarmac/pkg/callbacks/logging"
// Import Tarmac WASM Engine
"github.com/madflojo/tarmac/pkg/wasm"
"github.com/tarmac-project/tarmac/pkg/wasm"
"github.com/sirupsen/logrus"
)

Expand Down
2 changes: 1 addition & 1 deletion example/toolkit/wasm/go.mod
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
module github.com/madflojo/tarmac/example/toolkit/wasm
module github.com/tarmac-project/tarmac/example/toolkit/wasm

go 1.20

Expand Down
10 changes: 1 addition & 9 deletions go.mod
Original file line number Diff line number Diff line change
@@ -1,9 +1,8 @@
module github.com/madflojo/tarmac
module github.com/tarmac-project/tarmac

go 1.18

require (
github.com/glebarez/go-sqlite v1.21.2
github.com/go-sql-driver/mysql v1.7.1
github.com/julienschmidt/httprouter v1.3.0
github.com/lib/pq v1.10.9
Expand All @@ -30,7 +29,6 @@ require (
github.com/cespare/xxhash/v2 v2.2.0 // indirect
github.com/coreos/go-semver v0.3.1 // indirect
github.com/coreos/go-systemd/v22 v22.5.0 // indirect
github.com/dustin/go-humanize v1.0.1 // indirect
github.com/fatih/color v1.15.0 // indirect
github.com/fsnotify/fsnotify v1.6.0 // indirect
github.com/gocql/gocql v1.6.0 // indirect
Expand All @@ -41,7 +39,6 @@ require (
github.com/gomodule/redigo v1.8.9 // indirect
github.com/google/go-cmp v0.5.9 // indirect
github.com/google/s2a-go v0.1.7 // indirect
github.com/google/uuid v1.3.1 // indirect
github.com/googleapis/enterprise-certificate-proxy v0.3.1 // indirect
github.com/googleapis/gax-go/v2 v2.12.0 // indirect
github.com/hailocab/go-hostpool v0.0.0-20160125115350-e80d13ce29ed // indirect
Expand Down Expand Up @@ -73,7 +70,6 @@ require (
github.com/prometheus/client_model v0.4.0 // indirect
github.com/prometheus/common v0.44.0 // indirect
github.com/prometheus/procfs v0.12.0 // indirect
github.com/remyoudompheng/bigfft v0.0.0-20230129092748-24d4a6f8daec // indirect
github.com/rs/xid v1.5.0 // indirect
github.com/sagikazarmark/crypt v0.14.0 // indirect
github.com/spf13/afero v1.10.0 // indirect
Expand Down Expand Up @@ -109,8 +105,4 @@ require (
gopkg.in/inf.v0 v0.9.1 // indirect
gopkg.in/ini.v1 v1.67.0 // indirect
gopkg.in/yaml.v3 v3.0.1 // indirect
modernc.org/libc v1.22.5 // indirect
modernc.org/mathutil v1.5.0 // indirect
modernc.org/memory v1.5.0 // indirect
modernc.org/sqlite v1.23.1 // indirect
)
Loading

0 comments on commit 2740a68

Please sign in to comment.