From 9cda7df52aaf4165434b883a72013bbccb2bde90 Mon Sep 17 00:00:00 2001 From: Chris Okuda Date: Wed, 31 Dec 2025 10:42:27 -1000 Subject: [PATCH] Change trisa.io to travelrule.io everywhere using find and replace. --- LICENSE | 2 +- README.md | 4 ++-- containers/db/Dockerfile | 4 ++-- containers/demo/bff/Dockerfile | 3 +-- containers/demo/npm/Dockerfile | 2 +- containers/docs-redirect/Dockerfile | 4 ++-- containers/rvasp/Dockerfile | 4 ++-- lib/python/rvaspy/setup.py | 4 ++-- manifests/README.md | 2 +- manifests/cert-manager.yaml | 6 +++--- manifests/trisads.yaml | 2 +- scripts/fixtures/template.json | 14 ++++++++------ web/placeholder/vaspbot/index.html | 6 +++--- 13 files changed, 29 insertions(+), 28 deletions(-) diff --git a/LICENSE b/LICENSE index 79c2193..f5574d9 100644 --- a/LICENSE +++ b/LICENSE @@ -1,6 +1,6 @@ MIT License -Copyright (c) 2020 TRISA (https://trisa.io) +Copyright (c) 2020 TRISA (https://travelrule.io) Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal diff --git a/README.md b/README.md index 19cff38..5b1fd7c 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,6 @@ # TRISA TestNet -**An integration and test platform for the [TRISA Travel Rule Implementation](https://trisa.io).** +**An integration and test platform for the [TRISA Travel Rule Implementation](https://travelrule.io).** The TRISA test net is comprised of the following: @@ -32,4 +32,4 @@ To regenerate the Go and Python code from the protocol buffers: $ go generate ./... ``` -The go generate directives are stored in `pkg/rvasp/pb/v1/pb.go`. The directives create grpc Go in the `pb` package and grpc Python in the `rvaspy` module. \ No newline at end of file +The go generate directives are stored in `pkg/rvasp/pb/v1/pb.go`. The directives create grpc Go in the `pb` package and grpc Python in the `rvaspy` module. diff --git a/containers/db/Dockerfile b/containers/db/Dockerfile index f4875bd..fc06e3e 100644 --- a/containers/db/Dockerfile +++ b/containers/db/Dockerfile @@ -4,7 +4,7 @@ COPY . . RUN go test ./... && go build -v ./cmd/rvasp FROM ubuntu:focal -LABEL maintainer="TRISA " +LABEL maintainer="TRISA " LABEL description="Job to reset the Robot VASP working database" RUN apt-get update && apt-get install -y postgresql-client COPY --from=builder /rvasp/build/rvasp /bin/ @@ -12,4 +12,4 @@ COPY --from=builder /rvasp/build/scripts/reset-db.sh /bin/ COPY --from=builder /rvasp/build/pkg/rvasp/fixtures /fixtures RUN chmod +x /bin/reset-db.sh -CMD ["/bin/reset-db.sh"] \ No newline at end of file +CMD ["/bin/reset-db.sh"] diff --git a/containers/demo/bff/Dockerfile b/containers/demo/bff/Dockerfile index 41aecb0..cd07cf5 100644 --- a/containers/demo/bff/Dockerfile +++ b/containers/demo/bff/Dockerfile @@ -1,6 +1,6 @@ FROM python:3.8 -LABEL maintainer="TRISA " +LABEL maintainer="TRISA " LABEL description="Backend for Frontend (BFF) for rVASP Demo" # Install rvaspy library @@ -28,4 +28,3 @@ ENV FLASK_ENV development RUN [ "flask", "init-db" ] ENTRYPOINT ["flask", "run", "--host", "0.0.0.0", "--port", "8000"] - diff --git a/containers/demo/npm/Dockerfile b/containers/demo/npm/Dockerfile index f614ec6..54dd616 100644 --- a/containers/demo/npm/Dockerfile +++ b/containers/demo/npm/Dockerfile @@ -14,7 +14,7 @@ RUN npm run build FROM nginx:stable -LABEL maintainer="TRISA " +LABEL maintainer="TRISA " LABEL description="rVASP Demo React Frontend Application" COPY --from=builder /usr/src/app/build/ /var/www/ diff --git a/containers/docs-redirect/Dockerfile b/containers/docs-redirect/Dockerfile index 73910da..16de3c6 100644 --- a/containers/docs-redirect/Dockerfile +++ b/containers/docs-redirect/Dockerfile @@ -1,9 +1,9 @@ FROM nginx:stable -LABEL maintainer="TRISA " +LABEL maintainer="TRISA " LABEL description="Redirect testnet.directory to trisa.dev" COPY containers/docs-redirect/nginx.conf /etc/nginx/conf.d/default.conf ENV NGINX_ENTRYPOINT_QUIET_LOGS=1 -CMD [ "nginx", "-g", "daemon off;" ] \ No newline at end of file +CMD [ "nginx", "-g", "daemon off;" ] diff --git a/containers/rvasp/Dockerfile b/containers/rvasp/Dockerfile index f700def..a925678 100644 --- a/containers/rvasp/Dockerfile +++ b/containers/rvasp/Dockerfile @@ -35,7 +35,7 @@ RUN go build -v -o /go/bin/rvasp -ldflags="-X 'github.com/trisacrypto/testnet/pk # Final Stage FROM ${FINAL_IMAGE} AS final -LABEL maintainer="TRISA " +LABEL maintainer="TRISA " LABEL description="Robot VASP for TRISA demonstration and integration" # Ensure ca-certificates are up to date @@ -46,4 +46,4 @@ RUN set -x && apt-get update && \ # Copy the binary to the production image from the builder stage. COPY --from=builder /go/bin/rvasp /usr/local/bin/rvasp -CMD [ "/usr/local/bin/rvasp", "serve" ] \ No newline at end of file +CMD [ "/usr/local/bin/rvasp", "serve" ] diff --git a/lib/python/rvaspy/setup.py b/lib/python/rvaspy/setup.py index f0a6123..9801658 100755 --- a/lib/python/rvaspy/setup.py +++ b/lib/python/rvaspy/setup.py @@ -2,7 +2,7 @@ # setup # Setup script for installing the rvaspy client library. # -# Author: Benjamin Bengfort +# Author: Benjamin Bengfort # Created: Wed Oct 28 08:23:49 2020 -0400 # # For license information, see LICENSE.txt @@ -33,7 +33,7 @@ NAME = "rvaspy" DESCRIPTION = "Python bindings for the rVASP API" AUTHOR = "TRISA" -EMAIL = "benjamin@trisa.io" +EMAIL = "benjamin@travelrule.io" MAINTAINER = "Benjamin Bengfort" LICENSE = "MIT" REPOSITORY = "https://github.com/bbengfort/rvasp/" diff --git a/manifests/README.md b/manifests/README.md index a57b7cd..d86eb5c 100644 --- a/manifests/README.md +++ b/manifests/README.md @@ -84,7 +84,7 @@ Create a basic-auth secret to login ``` - $ htpasswd -nb admin@trisa.io [supersecretpassword] | openssl base64 + $ htpasswd -nb admin@travelrule.io [supersecretpassword] | openssl base64 ``` Write the results into `creds/traefik-dashboard-auth.yaml` diff --git a/manifests/cert-manager.yaml b/manifests/cert-manager.yaml index 4cb3ffa..fbab8ee 100644 --- a/manifests/cert-manager.yaml +++ b/manifests/cert-manager.yaml @@ -5,7 +5,7 @@ metadata: namespace: cert-manager spec: acme: - email: benjamin@trisa.io + email: benjamin@travelrule.io server: https://acme-staging-v02.api.letsencrypt.org/directory privateKeySecretRef: name: letsencrypt-staging @@ -24,7 +24,7 @@ metadata: namespace: cert-manager spec: acme: - email: admin@trisa.io + email: admin@travelrule.io server: https://acme-v02.api.letsencrypt.org/directory privateKeySecretRef: name: letsencrypt-prod @@ -64,4 +64,4 @@ spec: - "*.vaspbot.com" - "*.alice.vaspbot.com" - "*.bob.vaspbot.com" - - "*.evil.vaspbot.com" \ No newline at end of file + - "*.evil.vaspbot.com" diff --git a/manifests/trisads.yaml b/manifests/trisads.yaml index e2dd237..078fe5d 100644 --- a/manifests/trisads.yaml +++ b/manifests/trisads.yaml @@ -44,7 +44,7 @@ spec: - name: GDS_SERVICE_EMAIL value: "TRISA Directory Service " - name: GDS_ADMIN_EMAIL - value: "TRISA Admins " + value: "TRISA Admins " - name: SECTIGO_USERNAME valueFrom: secretKeyRef: diff --git a/scripts/fixtures/template.json b/scripts/fixtures/template.json index 24f5b2d..1afbe81 100644 --- a/scripts/fixtures/template.json +++ b/scripts/fixtures/template.json @@ -64,10 +64,12 @@ } ], "name": { - "name_identifiers": [{ - "legal_person_name": "", - "legal_person_name_identifier_type": 0 - }] + "name_identifiers": [ + { + "legal_person_name": "", + "legal_person_name_identifier_type": 0 + } + ] }, "national_identification": { "country_of_issue": "CA", @@ -91,7 +93,7 @@ ], "review_notes": { "5daa4ff0-9011-4b61-a8b3-9b0ff1ec4927": { - "author": "admin@trisa.io", + "author": "admin@travelrule.io", "created": "2021-07-12T20:12:02Z", "editor": "yvonne26@example.org", "id": "5daa4ff0-9011-4b61-a8b3-9b0ff1ec4927", @@ -139,4 +141,4 @@ "version": "4" }, "website": "https://trisa.alice.example.com" -} \ No newline at end of file +} diff --git a/web/placeholder/vaspbot/index.html b/web/placeholder/vaspbot/index.html index 512adda..dcec0a6 100644 --- a/web/placeholder/vaspbot/index.html +++ b/web/placeholder/vaspbot/index.html @@ -91,14 +91,14 @@

rVASP Demo Returning Soon

- The TRISA demo site is under re-development following the changes to the protocol in the v9 whitepaper. + The TRISA demo site is under re-development following the changes to the protocol in the v9 whitepaper.

The Alice & Bob rVASP servers are still up and running, for more information on how to interact with them using the CLI, please see the TRISA documentation.