From c4804b65c2ce6aa23633525c35b164ea7dec29d4 Mon Sep 17 00:00:00 2001 From: Harry Dhillon Date: Sun, 12 Oct 2025 16:48:11 -0600 Subject: [PATCH] chore: Migrate repo to organization - Migrate project from `hary-singh` namespace to `ork-cli` organization. - Add GoReleaser configuration for automated releases. - Introduce installation script and release workflow. - Update CLI versioning and metadata handling. - Add license and author details. Signed-off-by: Harry Dhillon --- .github/workflows/ci.yml | 11 ++ .github/workflows/release.yml | 37 +++++ .goreleaser.yaml | 132 ++++++++++++++++++ LICENSE | 190 ++++++++++++++++++++++++++ README.md | 10 ++ cmd/ork/main.go | 10 +- go.mod | 2 +- install.sh | 164 ++++++++++++++++++++++ internal/cli/down.go | 4 +- internal/cli/logs.go | 4 +- internal/cli/ps.go | 4 +- internal/cli/root.go | 30 +++- internal/cli/up.go | 6 +- internal/service/dependency.go | 2 +- internal/service/dependency_test.go | 2 +- internal/service/orchestrator.go | 4 +- internal/service/orchestrator_test.go | 2 +- internal/service/service.go | 4 +- internal/service/service_test.go | 2 +- 19 files changed, 598 insertions(+), 22 deletions(-) create mode 100644 .github/workflows/release.yml create mode 100644 .goreleaser.yaml create mode 100644 LICENSE create mode 100755 install.sh diff --git a/.github/workflows/ci.yml b/.github/workflows/ci.yml index 0a89fc6..179b869 100644 --- a/.github/workflows/ci.yml +++ b/.github/workflows/ci.yml @@ -3,8 +3,18 @@ name: CI on: push: branches: [ main ] + paths: + - '**.go' + - 'go.mod' + - 'go.sum' + - '.github/workflows/**' pull_request: branches: [ main ] + paths: + - '**.go' + - 'go.mod' + - 'go.sum' + - '.github/workflows/**' permissions: contents: read @@ -46,6 +56,7 @@ jobs: echo "Running tests (fast mode)..." TEST_FLAGS="" fi + echo "Command: go test -v $TEST_FLAGS -coverprofile=coverage.out ./..." echo "==========================================" if go test -v $TEST_FLAGS -coverprofile=coverage.out ./... 2>&1 | tee test-output.log; then echo "" diff --git a/.github/workflows/release.yml b/.github/workflows/release.yml new file mode 100644 index 0000000..b1b0034 --- /dev/null +++ b/.github/workflows/release.yml @@ -0,0 +1,37 @@ +name: Release + +on: + push: + tags: + - 'v*' + +permissions: + contents: write + +jobs: + release: + name: Release + runs-on: ubuntu-latest + steps: + - name: Checkout code + uses: actions/checkout@v4 + with: + fetch-depth: 0 + + - name: Set up Go + uses: actions/setup-go@v5 + with: + go-version: '1.25' + + - name: Run tests + run: go test -v ./... + + - name: Run GoReleaser + uses: goreleaser/goreleaser-action@v6 + with: + distribution: goreleaser + version: latest + args: release --clean + env: + GITHUB_TOKEN: ${{ secrets.GITHUB_TOKEN }} + diff --git a/.goreleaser.yaml b/.goreleaser.yaml new file mode 100644 index 0000000..dc6a0ee --- /dev/null +++ b/.goreleaser.yaml @@ -0,0 +1,132 @@ +# GoReleaser configuration +# Documentation: https://goreleaser.com + +version: 2 + +before: + hooks: + # Ensure go.mod is tidy + - go mod tidy + # Run tests before building + - go test ./... + +builds: + - id: ork + main: ./cmd/ork + binary: ork + env: + - CGO_ENABLED=0 + goos: + - linux + - darwin + - windows + goarch: + - amd64 + - arm64 + - arm + goarm: + - "7" + ignore: + # Windows ARM is rare + - goos: windows + goarch: arm64 + - goos: windows + goarch: arm + ldflags: + - -s -w + - -X main.version={{.Version}} + - -X main.commit={{.Commit}} + - -X main.date={{.Date}} + +archives: + - id: ork + format: tar.gz + name_template: >- + {{ .ProjectName }}_ + {{- .Version }}_ + {{- title .Os }}_ + {{- if eq .Arch "amd64" }}x86_64 + {{- else if eq .Arch "386" }}i386 + {{- else }}{{ .Arch }}{{ end }} + {{- if .Arm }}v{{ .Arm }}{{ end }} + format_overrides: + - goos: windows + format: zip + files: + - README.md + - LICENSE* + +checksum: + name_template: 'checksums.txt' + algorithm: sha256 + +brews: + - repository: + owner: ork-cli + name: homebrew-tap + description: "Orchestrate your microservices with simplicity and power" + homepage: https://github.com/ork-cli/ork + license: Apache-2.0 + test: | + system "#{bin}/ork --version" + install: | + bin.install "ork" + +changelog: + use: github + sort: asc + filters: + exclude: + - '^docs:' + - '^test:' + - '^ci:' + - '^chore:' + - 'merge conflict' + - 'Merge pull request' + - 'Merge remote-tracking branch' + - 'Merge branch' + groups: + - title: 'New Features' + regexp: '^.*?feat(\(.+\))??!?:.+$' + order: 0 + - title: 'Bug Fixes' + regexp: '^.*?fix(\(.+\))??!?:.+$' + order: 1 + - title: 'Performance Improvements' + regexp: '^.*?perf(\(.+\))??!?:.+$' + order: 2 + - title: 'Documentation' + regexp: '^.*?docs(\(.+\))??!?:.+$' + order: 3 + - title: 'Dependency Updates' + regexp: '^.*?(deps|build)(\(.+\))??!?:.+$' + order: 4 + - title: 'Other Changes' + order: 999 + +release: + github: + owner: ork-cli + name: ork + draft: false + prerelease: auto + mode: replace + header: | + ## Ork {{ .Tag }} Release 🚀 + + ### Installation + + **macOS/Linux:** + ```bash + curl -sSL https://raw.githubusercontent.com/ork-cli/ork/main/install.sh | sh + ``` + + **With Go:** + ```bash + go install github.com/ork-cli/ork@{{ .Tag }} + ``` + + **Or download binaries below for your platform.** + footer: | + --- + **Full Changelog**: https://github.com/ork-cli/ork/compare/{{ .PreviousTag }}...{{ .Tag }} diff --git a/LICENSE b/LICENSE new file mode 100644 index 0000000..64e8f0c --- /dev/null +++ b/LICENSE @@ -0,0 +1,190 @@ + Apache License + Version 2.0, January 2004 + http://www.apache.org/licenses/ + + TERMS AND CONDITIONS FOR USE, REPRODUCTION, AND DISTRIBUTION + + 1. Definitions. + + "License" shall mean the terms and conditions for use, reproduction, + and distribution as defined by Sections 1 through 9 of this document. + + "Licensor" shall mean the copyright owner or entity authorized by + the copyright owner that is granting the License. + + "Legal Entity" shall mean the union of the acting entity and all + other entities that control, are controlled by, or are under common + control with that entity. For the purposes of this definition, + "control" means (i) the power, direct or indirect, to cause the + direction or management of such entity, whether by contract or + otherwise, or (ii) ownership of fifty percent (50%) or more of the + outstanding shares, or (iii) beneficial ownership of such entity. + + "You" (or "Your") shall mean an individual or Legal Entity + exercising permissions granted by this License. + + "Source" form shall mean the preferred form for making modifications, + including but not limited to software source code, documentation + source, and configuration files. + + "Object" form shall mean any form resulting from mechanical + transformation or translation of a Source form, including but + not limited to compiled object code, generated documentation, + and conversions to other media types. + + "Work" shall mean the work of authorship, whether in Source or + Object form, made available under the License, as indicated by a + copyright notice that is included in or attached to the work + (an example is provided in the Appendix below). + + "Derivative Works" shall mean any work, whether in Source or Object + form, that is based on (or derived from) the Work and for which the + editorial revisions, annotations, elaborations, or other modifications + represent, as a whole, an original work of authorship. For the purposes + of this License, Derivative Works shall not include works that remain + separable from, or merely link (or bind by name) to the interfaces of, + the Work and Derivative Works thereof. + + "Contribution" shall mean any work of authorship, including + the original version of the Work and any modifications or additions + to that Work or Derivative Works thereof, that is intentionally + submitted to Licensor for inclusion in the Work by the copyright owner + or by an individual or Legal Entity authorized to submit on behalf of + the copyright owner. For the purposes of this definition, "submitted" + means any form of electronic, verbal, or written communication sent + to the Licensor or its representatives, including but not limited to + communication on electronic mailing lists, source code control systems, + and issue tracking systems that are managed by, or on behalf of, the + Licensor for the purpose of discussing and improving the Work, but + excluding communication that is conspicuously marked or otherwise + designated in writing by the copyright owner as "Not a Contribution." + + "Contributor" shall mean Licensor and any individual or Legal Entity + on behalf of whom a Contribution has been received by Licensor and + subsequently incorporated within the Work. + + 2. Grant of Copyright License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + copyright license to reproduce, prepare Derivative Works of, + publicly display, publicly perform, sublicense, and distribute the + Work and such Derivative Works in Source or Object form. + + 3. Grant of Patent License. Subject to the terms and conditions of + this License, each Contributor hereby grants to You a perpetual, + worldwide, non-exclusive, no-charge, royalty-free, irrevocable + (except as stated in this section) patent license to make, have made, + use, offer to sell, sell, import, and otherwise transfer the Work, + where such license applies only to those patent claims licensable + by such Contributor that are necessarily infringed by their + Contribution(s) alone or by combination of their Contribution(s) + with the Work to which such Contribution(s) was submitted. If You + institute patent litigation against any entity (including a + cross-claim or counterclaim in a lawsuit) alleging that the Work + or a Contribution incorporated within the Work constitutes direct + or contributory patent infringement, then any patent licenses + granted to You under this License for that Work shall terminate + as of the date such litigation is filed. + + 4. Redistribution. You may reproduce and distribute copies of the + Work or Derivative Works thereof in any medium, with or without + modifications, and in Source or Object form, provided that You + meet the following conditions: + + (a) You must give any other recipients of the Work or + Derivative Works a copy of this License; and + + (b) You must cause any modified files to carry prominent notices + stating that You changed the files; and + + (c) You must retain, in the Source form of any Derivative Works + that You distribute, all copyright, patent, trademark, and + attribution notices from the Source form of the Work, + excluding those notices that do not pertain to any part of + the Derivative Works; and + + (d) If the Work includes a "NOTICE" text file as part of its + distribution, then any Derivative Works that You distribute must + include a readable copy of the attribution notices contained + within such NOTICE file, excluding those notices that do not + pertain to any part of the Derivative Works, in at least one + of the following places: within a NOTICE text file distributed + as part of the Derivative Works; within the Source form or + documentation, if provided along with the Derivative Works; or, + within a display generated by the Derivative Works, if and + wherever such third-party notices normally appear. The contents + of the NOTICE file are for informational purposes only and + do not modify the License. You may add Your own attribution + notices within Derivative Works that You distribute, alongside + or as an addendum to the NOTICE text from the Work, provided + that such additional attribution notices cannot be construed + as modifying the License. + + You may add Your own copyright statement to Your modifications and + may provide additional or different license terms and conditions + for use, reproduction, or distribution of Your modifications, or + for any such Derivative Works as a whole, provided Your use, + reproduction, and distribution of the Work otherwise complies with + the conditions stated in this License. + + 5. Submission of Contributions. Unless You explicitly state otherwise, + any Contribution intentionally submitted for inclusion in the Work + by You to the Licensor shall be under the terms and conditions of + this License, without any additional terms or conditions. + Notwithstanding the above, nothing herein shall supersede or modify + the terms of any separate license agreement you may have executed + with Licensor regarding such Contributions. + + 6. Trademarks. This License does not grant permission to use the trade + names, trademarks, service marks, or product names of the Licensor, + except as required for reasonable and customary use in describing the + origin of the Work and reproducing the content of the NOTICE file. + + 7. Disclaimer of Warranty. Unless required by applicable law or + agreed to in writing, Licensor provides the Work (and each + Contributor provides its Contributions) on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or + implied, including, without limitation, any warranties or conditions + of TITLE, NON-INFRINGEMENT, MERCHANTABILITY, or FITNESS FOR A + PARTICULAR PURPOSE. You are solely responsible for determining the + appropriateness of using or redistributing the Work and assume any + risks associated with Your exercise of permissions under this License. + + 8. Limitation of Liability. In no event and under no legal theory, + whether in tort (including negligence), contract, or otherwise, + unless required by applicable law (such as deliberate and grossly + negligent acts) or agreed to in writing, shall any Contributor be + liable to You for damages, including any direct, indirect, special, + incidental, or consequential damages of any character arising as a + result of this License or out of the use or inability to use the + Work (including but not limited to damages for loss of goodwill, + work stoppage, computer failure or malfunction, or any and all + other commercial damages or losses), even if such Contributor + has been advised of the possibility of such damages. + + 9. Accepting Warranty or Additional Liability. While redistributing + the Work or Derivative Works thereof, You may choose to offer, + and charge a fee for, acceptance of support, warranty, indemnity, + or other liability obligations and/or rights consistent with this + License. However, in accepting such obligations, You may act only + on Your own behalf and on Your sole responsibility, not on behalf + of any other Contributor, and only if You agree to indemnify, + defend, and hold each Contributor harmless for any liability + incurred by, or claims asserted against, such Contributor by reason + of your accepting any such warranty or additional liability. + + END OF TERMS AND CONDITIONS + + Copyright 2025 Harry Dhillon + + Licensed under the Apache License, Version 2.0 (the "License"); + you may not use this file except in compliance with the License. + You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + + Unless required by applicable law or agreed to in writing, software + distributed under the License is distributed on an "AS IS" BASIS, + WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + See the License for the specific language governing permissions and + limitations under the License. diff --git a/README.md b/README.md index e5fa107..d49d37c 100644 --- a/README.md +++ b/README.md @@ -47,3 +47,13 @@ Ork is built with carefully selected Go libraries: | [go-yaml](https://github.com/go-yaml/yaml) | YAML parsing | Parse `ork.yml` configuration files | | [go-git](https://github.com/go-git/go-git) | Git operations | Pure Go git implementation | +## Author + +Created by [Harry Dhillon](https://github.com/hary-singh) • [ork-cli organization](https://github.com/ork-cli) + +## License + +Apache 2.0 - see [LICENSE](LICENSE) file for details. + +This project is licensed under the Apache License 2.0, which means you are free to use, modify, and distribute this +software. See the LICENSE file for the full terms. diff --git a/cmd/ork/main.go b/cmd/ork/main.go index f1870ef..c339a63 100644 --- a/cmd/ork/main.go +++ b/cmd/ork/main.go @@ -1,9 +1,17 @@ package main import ( - "github.com/hary-singh/ork/internal/cli" + "github.com/ork-cli/ork/internal/cli" +) + +// Build information. Populated at build-time via ldflags. +var ( + version = "dev" + commit = "none" + date = "unknown" ) func main() { + cli.SetVersionInfo(version, commit, date) cli.Execute() } diff --git a/go.mod b/go.mod index 0d62616..e10ba85 100644 --- a/go.mod +++ b/go.mod @@ -1,4 +1,4 @@ -module github.com/hary-singh/ork +module github.com/ork-cli/ork go 1.25.2 diff --git a/install.sh b/install.sh new file mode 100755 index 0000000..b84f333 --- /dev/null +++ b/install.sh @@ -0,0 +1,164 @@ +#!/bin/sh +# Ork installation script +# Usage: curl -sSL https://raw.githubusercontent.com/ork-cli/ork/main/install.sh | sh +# Or with custom location: curl -sSL https://ork.sh | sh + +set -e + +# Configuration +REPO="ork-cli/ork" +BINARY_NAME="ork" +INSTALL_DIR="${INSTALL_DIR:-/usr/local/bin}" + +# Colors for output +RED='\033[0;31m' +GREEN='\033[0;32m' +YELLOW='\033[1;33m' +BLUE='\033[0;34m' +NC='\033[0m' # No Color + +# Helper functions +info() { + printf "${BLUE}==>${NC} %s\n" "$1" +} + +success() { + printf "${GREEN}==>${NC} %s\n" "$1" +} + +error() { + printf "${RED}Error:${NC} %s\n" "$1" >&2 + exit 1 +} + +warning() { + printf "${YELLOW}Warning:${NC} %s\n" "$1" +} + +# Detect OS +detect_os() { + case "$(uname -s)" in + Linux*) OS="Linux";; + Darwin*) OS="Darwin";; + MINGW*|MSYS*|CYGWIN*) OS="Windows";; + *) error "Unsupported operating system: $(uname -s)";; + esac +} + +# Detect architecture +detect_arch() { + ARCH="$(uname -m)" + case "$ARCH" in + x86_64) ARCH="x86_64";; + amd64) ARCH="x86_64";; + arm64) ARCH="arm64";; + aarch64) ARCH="arm64";; + armv7l) ARCH="armv7";; + *) error "Unsupported architecture: $ARCH";; + esac +} + +# Get latest release version +get_latest_version() { + info "Fetching latest version..." + VERSION=$(curl -sf "https://api.github.com/repos/${REPO}/releases/latest" | grep '"tag_name":' | sed -E 's/.*"([^"]+)".*/\1/') + + if [ -z "$VERSION" ]; then + error "Failed to fetch latest version. Please check your internet connection or try again later." + fi + + info "Latest version: $VERSION" +} + +# Download and install binary +install_binary() { + # Construct download URL + ARCHIVE_EXT="tar.gz" + if [ "$OS" = "Windows" ]; then + ARCHIVE_EXT="zip" + fi + + ARCHIVE_NAME="${BINARY_NAME}_${VERSION}_${OS}_${ARCH}.${ARCHIVE_EXT}" + DOWNLOAD_URL="https://github.com/${REPO}/releases/download/${VERSION}/${ARCHIVE_NAME}" + + info "Downloading from: $DOWNLOAD_URL" + + # Create temporary directory + TMP_DIR="$(mktemp -d)" + trap "rm -rf '$TMP_DIR'" EXIT + + # Download archive + if ! curl -sfL "$DOWNLOAD_URL" -o "$TMP_DIR/$ARCHIVE_NAME"; then + error "Failed to download $ARCHIVE_NAME" + fi + + # Extract binary + info "Extracting archive..." + cd "$TMP_DIR" + if [ "$ARCHIVE_EXT" = "zip" ]; then + unzip -q "$ARCHIVE_NAME" + else + tar -xzf "$ARCHIVE_NAME" + fi + + # Check if we need sudo + if [ ! -w "$INSTALL_DIR" ]; then + warning "Installation directory $INSTALL_DIR requires sudo privileges" + SUDO="sudo" + else + SUDO="" + fi + + # Install binary + info "Installing $BINARY_NAME to $INSTALL_DIR..." + if [ "$OS" = "Windows" ]; then + $SUDO mv "$BINARY_NAME.exe" "$INSTALL_DIR/" + else + $SUDO mv "$BINARY_NAME" "$INSTALL_DIR/" + $SUDO chmod +x "$INSTALL_DIR/$BINARY_NAME" + fi + + success "$BINARY_NAME installed successfully!" +} + +# Verify installation +verify_installation() { + if command -v "$BINARY_NAME" >/dev/null 2>&1; then + INSTALLED_VERSION=$("$BINARY_NAME" --version 2>&1 || echo "unknown") + success "Installation verified: $INSTALLED_VERSION" + info "" + info "Get started with:" + info " $BINARY_NAME --help" + else + warning "$BINARY_NAME was installed but is not in your PATH" + info "Add $INSTALL_DIR to your PATH or run: $INSTALL_DIR/$BINARY_NAME" + fi +} + +# Main installation flow +main() { + echo "" + info "Installing Ork - Microservices Orchestration Tool" + echo "" + + # Detect system + detect_os + detect_arch + info "Detected: $OS $ARCH" + + # Get version + get_latest_version + + # Install + install_binary + + # Verify + verify_installation + + echo "" + success "Installation complete! 🚀" + echo "" +} + +# Run main function +main diff --git a/internal/cli/down.go b/internal/cli/down.go index 918a8ed..4732982 100644 --- a/internal/cli/down.go +++ b/internal/cli/down.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" "github.com/spf13/cobra" ) diff --git a/internal/cli/logs.go b/internal/cli/logs.go index 6a4d9bc..6f94de3 100644 --- a/internal/cli/logs.go +++ b/internal/cli/logs.go @@ -4,8 +4,8 @@ import ( "context" "fmt" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" "github.com/spf13/cobra" ) diff --git a/internal/cli/ps.go b/internal/cli/ps.go index f0f3739..32c593c 100644 --- a/internal/cli/ps.go +++ b/internal/cli/ps.go @@ -5,8 +5,8 @@ import ( "fmt" "strings" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" "github.com/spf13/cobra" ) diff --git a/internal/cli/root.go b/internal/cli/root.go index 8e38df0..2db92ef 100644 --- a/internal/cli/root.go +++ b/internal/cli/root.go @@ -7,8 +7,32 @@ import ( "github.com/spf13/cobra" ) -// Version information (will be set via build flags later) -var Version = "0.0.1-dev" +// Version information (set via build flags) +var ( + version = "dev" + commit = "none" + date = "unknown" +) + +// SetVersionInfo sets the version information from build flags +func SetVersionInfo(v, c, d string) { + version = v + commit = c + date = d + rootCmd.Version = buildVersionString() +} + +// buildVersionString creates a detailed version string +func buildVersionString() string { + result := version + if commit != "none" && commit != "" { + result += fmt.Sprintf(" (commit: %s)", commit) + } + if date != "unknown" && date != "" { + result += fmt.Sprintf(" (built: %s)", date) + } + return result +} // rootCmd represents the base command when called without any subcommands var rootCmd = &cobra.Command{ @@ -17,7 +41,7 @@ var rootCmd = &cobra.Command{ Long: `Ork is a modern microservices orchestration tool that makes Docker Compose not suck. Run services from anywhere, intelligently manage dependencies, and enjoy beautiful CLI output.`, - Version: Version, + Version: version, } // Execute runs the root command diff --git a/internal/cli/up.go b/internal/cli/up.go index 8fae9ae..933ccf9 100644 --- a/internal/cli/up.go +++ b/internal/cli/up.go @@ -4,9 +4,9 @@ import ( "context" "fmt" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" - "github.com/hary-singh/ork/internal/service" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" + "github.com/ork-cli/ork/internal/service" "github.com/spf13/cobra" ) diff --git a/internal/service/dependency.go b/internal/service/dependency.go index f96b1b5..1e1ea0a 100644 --- a/internal/service/dependency.go +++ b/internal/service/dependency.go @@ -3,7 +3,7 @@ package service import ( "fmt" - "github.com/hary-singh/ork/internal/config" + "github.com/ork-cli/ork/internal/config" ) // ============================================================================ diff --git a/internal/service/dependency_test.go b/internal/service/dependency_test.go index 28ae9bd..8a1e81c 100644 --- a/internal/service/dependency_test.go +++ b/internal/service/dependency_test.go @@ -4,7 +4,7 @@ import ( "strings" "testing" - "github.com/hary-singh/ork/internal/config" + "github.com/ork-cli/ork/internal/config" ) // ============================================================================ diff --git a/internal/service/orchestrator.go b/internal/service/orchestrator.go index 05fa8de..aa05d4b 100644 --- a/internal/service/orchestrator.go +++ b/internal/service/orchestrator.go @@ -6,8 +6,8 @@ import ( "sync" "time" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" ) // ============================================================================ diff --git a/internal/service/orchestrator_test.go b/internal/service/orchestrator_test.go index bb29b0c..449777c 100644 --- a/internal/service/orchestrator_test.go +++ b/internal/service/orchestrator_test.go @@ -4,7 +4,7 @@ import ( "sync" "testing" - "github.com/hary-singh/ork/internal/config" + "github.com/ork-cli/ork/internal/config" "github.com/stretchr/testify/assert" ) diff --git a/internal/service/service.go b/internal/service/service.go index 8a74b49..83c7d93 100644 --- a/internal/service/service.go +++ b/internal/service/service.go @@ -8,8 +8,8 @@ import ( "sync" "time" - "github.com/hary-singh/ork/internal/config" - "github.com/hary-singh/ork/internal/docker" + "github.com/ork-cli/ork/internal/config" + "github.com/ork-cli/ork/internal/docker" ) // ============================================================================ diff --git a/internal/service/service_test.go b/internal/service/service_test.go index 0e4919b..541fde5 100644 --- a/internal/service/service_test.go +++ b/internal/service/service_test.go @@ -4,7 +4,7 @@ import ( "testing" "time" - "github.com/hary-singh/ork/internal/config" + "github.com/ork-cli/ork/internal/config" "github.com/stretchr/testify/assert" )