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
]
env:
ABSOLUTE_DH_IMAGE: docker.io/corysanin/archy-build-thing
ABSOLUTE_DH_IMAGE: docker.io/corysanin/archery
DEPLOY: false
permissions:
contents: read

View File

@ -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}

4
package-lock.json generated
View File

@ -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": {

View File

@ -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",

View File

@ -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';