diff --git a/.github/ISSUE_TEMPLATE/config.yml b/.github/ISSUE_TEMPLATE/config.yml index cd789951..cc6dec48 100644 --- a/.github/ISSUE_TEMPLATE/config.yml +++ b/.github/ISSUE_TEMPLATE/config.yml @@ -2,10 +2,10 @@ blank_issues_enabled: true contact_links: - name: Enhancement / Feature about: Raise a new enhancement/feature request - url: https://github.com/thoughtworks-sea/recce/issues/new?template=enhancement---feature.md&labels=enhancement&projects=thoughtworks-sea%2Frecce%2F1 + url: https://github.com/thoughtworks/recce/issues/new?template=enhancement---feature.md&labels=enhancement&projects=thoughtworks%2Frecce%2F1 - name: Bug report about: Create a report to help us improve - url: https://github.com/thoughtworks-sea/recce/issues/new?template=bug_report.md&labels=bug&projects=thoughtworks-sea%2Frecce%2F1 + url: https://github.com/thoughtworks/recce/issues/new?template=bug_report.md&labels=bug&projects=thoughtworks%2Frecce%2F1 - name: Task / Chore about: Add a technical task or chore - url: https://github.com/thoughtworks-sea/recce/issues/new?template=task---chore.md&labels=task&projects=thoughtworks-sea%2Frecce%2F1 + url: https://github.com/thoughtworks/recce/issues/new?template=task---chore.md&labels=task&projects=thoughtworks%2Frecce%2F1 diff --git a/DEVELOPMENT.md b/DEVELOPMENT.md index 55e3b4aa..f68a297f 100644 --- a/DEVELOPMENT.md +++ b/DEVELOPMENT.md @@ -128,8 +128,6 @@ If you're running on MacOS using Colima or Docker Desktop, the default VM create # For maintainers -Currently, core maintainer privileges are only available to Thoughtworkers. A setup guide is available [here (internal only)](https://docs.google.com/document/d/1r56rDyGOnRQAAMyHtUHflML1szdvQJMi8p3bzMNB_8A/edit#). - ## Releasing Needs to be more automated. Current we are experimenting with using [Reckon](https://github.com/ajoberstar/reckon) to determine versions from flags. @@ -143,5 +141,5 @@ Current release process looks like # Patch version (e.g 0.6.0 -> 0.6.1) ./gradlew -Preckon.stage=final -Preckon.scope=patch reckonTagPush ``` -2. The tag push will trigger a build on [GitHub Actions](https://github.com/ThoughtWorks-SEA/recce/actions) and push to GHCR. -3. Create a new release on Github via https://github.com/ThoughtWorks-SEA/recce/releases linked to the tag +2. The tag push will trigger a build on [GitHub Actions](https://github.com/thoughtworks/recce/actions) and push to GHCR. +3. Create a new release on Github via https://github.com/thoughtworks/recce/releases linked to the tag diff --git a/README.md b/README.md index 53ab8fd3..e834f2a6 100644 --- a/README.md +++ b/README.md @@ -1,8 +1,8 @@ # Recce Server -[![Build Status](https://github.com/thoughtworks-sea/recce/actions/workflows/build.yml/badge.svg)](https://github.com/thoughtworks-sea/recce/actions/workflows/build.yml) -[![Coverage](https://img.shields.io/codecov/c/github/thoughtworks-sea/recce.svg)](https://codecov.io/gh/thoughtworks-sea/recce) -[![License](https://img.shields.io/github/license/thoughtworks-sea/recce.svg)](https://opensource.org/licenses/Apache-2.0) +[![Build Status](https://github.com/thoughtworks/recce/actions/workflows/build.yml/badge.svg)](https://github.com/thoughtworks/recce/actions/workflows/build.yml) +[![Coverage](https://img.shields.io/codecov/c/github/thoughtworks/recce.svg)](https://codecov.io/gh/thoughtworks/recce) +[![License](https://img.shields.io/github/license/thoughtworks/recce.svg)](https://opensource.org/licenses/Apache-2.0) Recce (_rek-ee_) is a database reconciliation tool **_for developers_**. @@ -46,7 +46,7 @@ You can read more about the ideas behind Recce at [DESIGN.md](docs/DESIGN.md) or # Getting Started -Recce is currently [published and available as a container image via GHCR](https://github.com/ThoughtWorks-SEA/recce/pkgs/container/recce-server). +Recce is currently [published and available as a container image via GHCR](https://github.com/thoughtworks/recce/pkgs/container/recce-server). However, it also * requires its own Postgres database @@ -72,7 +72,7 @@ The below options require only JDK 11+ and Docker (or equivalent) installed loca -e DATABASE_HOST=host.docker.internal \ -e R2DBC_DATASOURCES_SOURCE_URL=r2dbc:pool:mariadb://host.docker.internal:8000/db \ -e R2DBC_DATASOURCES_TARGET_URL=r2dbc:pool:mariadb://host.docker.internal:8001/db \ - ghcr.io/thoughtworks-sea/recce-server:latest + ghcr.io/thoughtworks/recce-server:latest ``` 2. **Explore** and trigger runs via Recce's APIs, accessible via interactive UI at http://localhost:8080/rapidoc/. @@ -190,7 +190,7 @@ touch my-dataset-configs/config1.yml my-dataset-configs/config2.yml docker run -p 8080:8080 \ -v $(pwd)/my-dataset-configs:/config \ -e MICRONAUT_CONFIG_FILES=/config/config1.yml,/config/config2.yml \ - ghcr.io/thoughtworks-sea/recce-server:latest + ghcr.io/thoughtworks/recce-server:latest ``` ## Configuring authentication diff --git a/build.gradle.kts b/build.gradle.kts index edd04ebc..e546b38f 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -179,7 +179,7 @@ application { tasks.run.configure { doFirst { environment("version", "$version") } - // Workaround https://github.com/thoughtworks-sea/recce/issues/155 + // Workaround https://github.com/thoughtworks/recce/issues/155 jvmArgs("-XX:+StartAttachListener") environment.computeIfAbsent("AUTH_USERNAME") { "admin" } environment.computeIfAbsent("AUTH_PASSWORD") { "admin" } @@ -248,7 +248,7 @@ tasks.register("fastTests") { } } -val githubRepoOwner = "thoughtworks-sea" +val githubRepoOwner = "thoughtworks" val containerRepoName = "recce-server" jib { from { diff --git a/src/main/kotlin/recce/server/RecceServer.kt b/src/main/kotlin/recce/server/RecceServer.kt index e8aa3c69..1d26ee46 100644 --- a/src/main/kotlin/recce/server/RecceServer.kt +++ b/src/main/kotlin/recce/server/RecceServer.kt @@ -12,7 +12,7 @@ import io.swagger.v3.oas.annotations.security.SecuritySchemes import mu.KotlinLogging import reactor.tools.agent.ReactorDebugAgent -private const val GITHUB_PROJECT = "https://github.com/thoughtworks-sea/recce" +private const val GITHUB_PROJECT = "https://github.com/thoughtworks/recce" private val logger = KotlinLogging.logger {} @OpenAPIDefinition(