From 91f5db40cd534f226013fb75b45515cc900e3b44 Mon Sep 17 00:00:00 2001 From: Cory Sanin Date: Tue, 14 Jan 2025 03:27:49 -0500 Subject: [PATCH] rename project to archery --- .github/workflows/build-arch-images.yml | 2 +- docker-compose.yml | 6 +++--- package-lock.json | 4 ++-- package.json | 8 ++++---- src/BuildController.ts | 4 ++-- 5 files changed, 12 insertions(+), 12 deletions(-) diff --git a/.github/workflows/build-arch-images.yml b/.github/workflows/build-arch-images.yml index 3c810f0..f86a363 100644 --- a/.github/workflows/build-arch-images.yml +++ b/.github/workflows/build-arch-images.yml @@ -27,7 +27,7 @@ jobs: artix ] env: - ABSOLUTE_DH_IMAGE: docker.io/corysanin/archy-build-thing + ABSOLUTE_DH_IMAGE: docker.io/corysanin/archery DEPLOY: false permissions: contents: read diff --git a/docker-compose.yml b/docker-compose.yml index 344657e..3efa590 100644 --- a/docker-compose.yml +++ b/docker-compose.yml @@ -1,8 +1,8 @@ version: '2' services: - archy-build-thing: - container_name: archy-build-thing + archery: + container_name: archery build: context: ./ dockerfile: Dockerfile @@ -16,7 +16,7 @@ services: - postgres postgres: - container_name: archy-postgres + container_name: archery-postgres image: postgres:17-alpine environment: POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} diff --git a/package-lock.json b/package-lock.json index c9e3ddc..bbc0eaa 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,11 +1,11 @@ { - "name": "archy-build-thing", + "name": "archery", "version": "0.0.1", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "archy-build-thing", + "name": "archery", "version": "0.0.1", "license": "MIT", "dependencies": { diff --git a/package.json b/package.json index 72f76ae..3b692b1 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "archy-build-thing", + "name": "archery", "version": "0.0.1", "description": "Build Arch packages through a web interface", "keywords": [ @@ -7,13 +7,13 @@ "arch", "artix" ], - "homepage": "https://github.com/CorySanin/archy-build-thing#readme", + "homepage": "https://github.com/CorySanin/archery#readme", "bugs": { - "url": "https://github.com/CorySanin/archy-build-thing/issues" + "url": "https://github.com/CorySanin/archery/issues" }, "repository": { "type": "git", - "url": "git+https://github.com/CorySanin/archy-build-thing.git" + "url": "git+https://github.com/CorySanin/archery.git" }, "license": "MIT", "author": "Cory Sanin", diff --git a/src/BuildController.ts b/src/BuildController.ts index 476b16c..20f71d9 100644 --- a/src/BuildController.ts +++ b/src/BuildController.ts @@ -3,8 +3,8 @@ import EventEmitter from 'events'; import type { Build, DB } from "./DB.ts"; const docker_images = { - arch: 'corysanin/archy-build-thing:arch', - artix: 'corysanin/archy-build-thing:artix', + arch: 'corysanin/archery:arch', + artix: 'corysanin/archery:artix', } type LogType = 'std' | 'err' | 'finish';