rename project to archery

This commit is contained in:
Cory Sanin 2025-01-14 03:27:49 -05:00
parent 413a756951
commit 91f5db40cd
5 changed files with 12 additions and 12 deletions

View File

@ -27,7 +27,7 @@ jobs:
artix artix
] ]
env: env:
ABSOLUTE_DH_IMAGE: docker.io/corysanin/archy-build-thing ABSOLUTE_DH_IMAGE: docker.io/corysanin/archery
DEPLOY: false DEPLOY: false
permissions: permissions:
contents: read contents: read

View File

@ -1,8 +1,8 @@
version: '2' version: '2'
services: services:
archy-build-thing: archery:
container_name: archy-build-thing container_name: archery
build: build:
context: ./ context: ./
dockerfile: Dockerfile dockerfile: Dockerfile
@ -16,7 +16,7 @@ services:
- postgres - postgres
postgres: postgres:
container_name: archy-postgres container_name: archery-postgres
image: postgres:17-alpine image: postgres:17-alpine
environment: environment:
POSTGRES_PASSWORD: ${POSTGRES_PASSWORD} POSTGRES_PASSWORD: ${POSTGRES_PASSWORD}

4
package-lock.json generated
View File

@ -1,11 +1,11 @@
{ {
"name": "archy-build-thing", "name": "archery",
"version": "0.0.1", "version": "0.0.1",
"lockfileVersion": 3, "lockfileVersion": 3,
"requires": true, "requires": true,
"packages": { "packages": {
"": { "": {
"name": "archy-build-thing", "name": "archery",
"version": "0.0.1", "version": "0.0.1",
"license": "MIT", "license": "MIT",
"dependencies": { "dependencies": {

View File

@ -1,5 +1,5 @@
{ {
"name": "archy-build-thing", "name": "archery",
"version": "0.0.1", "version": "0.0.1",
"description": "Build Arch packages through a web interface", "description": "Build Arch packages through a web interface",
"keywords": [ "keywords": [
@ -7,13 +7,13 @@
"arch", "arch",
"artix" "artix"
], ],
"homepage": "https://github.com/CorySanin/archy-build-thing#readme", "homepage": "https://github.com/CorySanin/archery#readme",
"bugs": { "bugs": {
"url": "https://github.com/CorySanin/archy-build-thing/issues" "url": "https://github.com/CorySanin/archery/issues"
}, },
"repository": { "repository": {
"type": "git", "type": "git",
"url": "git+https://github.com/CorySanin/archy-build-thing.git" "url": "git+https://github.com/CorySanin/archery.git"
}, },
"license": "MIT", "license": "MIT",
"author": "Cory Sanin", "author": "Cory Sanin",

View File

@ -3,8 +3,8 @@ import EventEmitter from 'events';
import type { Build, DB } from "./DB.ts"; import type { Build, DB } from "./DB.ts";
const docker_images = { const docker_images = {
arch: 'corysanin/archy-build-thing:arch', arch: 'corysanin/archery:arch',
artix: 'corysanin/archy-build-thing:artix', artix: 'corysanin/archery:artix',
} }
type LogType = 'std' | 'err' | 'finish'; type LogType = 'std' | 'err' | 'finish';