From 8718a3b8faa1938ae5e73637f31ed9c9f4e98bab Mon Sep 17 00:00:00 2001 From: Elara Musayelyan Date: Sat, 29 Jul 2023 21:33:23 -0700 Subject: [PATCH] Update username --- go-import-redirector/README.md | 2 +- go-import-redirector/go-import-redirector.nomad | 2 +- lure-web/README.md | 2 +- 3 files changed, 3 insertions(+), 3 deletions(-) diff --git a/go-import-redirector/README.md b/go-import-redirector/README.md index 391b0bb..7ca2aa8 100644 --- a/go-import-redirector/README.md +++ b/go-import-redirector/README.md @@ -1,6 +1,6 @@ # Go Import Redirector -This is the nomad job file I use for rsc's [go-import-redirector](https://github.com/rsc/go-import-redirector), which redirects the Go programming language tool to the proper github repo. For example, if someone tries to install one of my projects, rather than having to type out `go install gitea.elara.ws/Arsen6331/itd@latest`, they can just use `go install go.elara.ws/itd@latest` and this service will redirect them. +This is the nomad job file I use for rsc's [go-import-redirector](https://github.com/rsc/go-import-redirector), which redirects the Go programming language tool to the proper github repo. For example, if someone tries to install one of my projects, rather than having to type out `go install gitea.elara.ws/Elara6331/itd@latest`, they can just use `go install go.elara.ws/itd@latest` and this service will redirect them. This job file downloads an archive containing `go-import-redirector` executables for `x86_64` and `aarch64`, as well as a script that runs the correct one, from my minio instance. diff --git a/go-import-redirector/go-import-redirector.nomad b/go-import-redirector/go-import-redirector.nomad index 6318391..431b538 100644 --- a/go-import-redirector/go-import-redirector.nomad +++ b/go-import-redirector/go-import-redirector.nomad @@ -18,7 +18,7 @@ job "go-import-redirector" { args = [ "-addr", ":${NOMAD_PORT_http}", "go.elara.ws/*", - "https://gitea.elara.ws/Arsen6331/*" + "https://gitea.elara.ws/Elara6331/*" ] } diff --git a/lure-web/README.md b/lure-web/README.md index 2ca1ec7..28171f0 100644 --- a/lure-web/README.md +++ b/lure-web/README.md @@ -1,6 +1,6 @@ # LURE Web -This nomad file is for one of my other projects, [LURE](https://gitea.elara.ws/Arsen6331/lure). Specifically, it runs [LURE's Web interface](https://lure.elara.ws) and its backend API server. +This nomad file is for one of my other projects, [LURE](https://gitea.elara.ws/Elara6331/lure). Specifically, it runs [LURE's Web interface](https://lure.elara.ws) and its backend API server. This job requires no volumes. The only thing that needs to be changed is the Github API secret. This is for a Github webhook, so that the API server knows when the LURE repo changes so it can update its database.