Skip to content

Commit

Permalink
Update links for move to main ThoughtWorks GH org
Browse files Browse the repository at this point in the history
  • Loading branch information
chadlwilson committed Sep 25, 2024
1 parent 055a2fe commit 02194b1
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 16 deletions.
6 changes: 3 additions & 3 deletions .github/ISSUE_TEMPLATE/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -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
6 changes: 2 additions & 4 deletions DEVELOPMENT.md
Original file line number Diff line number Diff line change
Expand Up @@ -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.
Expand All @@ -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
12 changes: 6 additions & 6 deletions README.md
Original file line number Diff line number Diff line change
@@ -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_**.

Expand Down Expand Up @@ -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
Expand All @@ -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/.
Expand Down Expand Up @@ -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
Expand Down
4 changes: 2 additions & 2 deletions build.gradle.kts
Original file line number Diff line number Diff line change
Expand Up @@ -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" }
Expand Down Expand Up @@ -248,7 +248,7 @@ tasks.register<Test>("fastTests") {
}
}

val githubRepoOwner = "thoughtworks-sea"
val githubRepoOwner = "thoughtworks"
val containerRepoName = "recce-server"
jib {
from {
Expand Down
2 changes: 1 addition & 1 deletion src/main/kotlin/recce/server/RecceServer.kt
Original file line number Diff line number Diff line change
Expand Up @@ -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(
Expand Down

0 comments on commit 02194b1

Please sign in to comment.