From 6d58559fa97d54bd267b191caccc22519b9fee19 Mon Sep 17 00:00:00 2001 From: Caleb Burke Date: Thu, 25 Jun 2026 00:45:26 -0700 Subject: [PATCH] More template changes --- README.md | 2 +- api/src/db/seeds/development/000.seed-system-user.ts | 4 ++-- api/src/db/seeds/production/000.seed-system-user.ts | 4 ++-- api/src/db/seeds/test/000.seed-system-user.ts | 4 ++-- docker-compose.development.yml | 4 ++-- package-lock.json | 4 ++-- package.json | 2 +- web/index.html | 2 +- web/src/App.vue | 2 +- web/src/components/common/AppLogo.vue | 2 +- web/src/config.ts | 6 +++--- web/src/layouts/logo/AppLogo.vue | 6 +++--- web/src/pages/CallbackPage.vue | 2 +- web/src/pages/SignInPage.vue | 2 +- 14 files changed, 23 insertions(+), 23 deletions(-) diff --git a/README.md b/README.md index 3f092cb..9c47e8f 100644 --- a/README.md +++ b/README.md @@ -1 +1 @@ -# alphane.ca +# calebburke.dev diff --git a/api/src/db/seeds/development/000.seed-system-user.ts b/api/src/db/seeds/development/000.seed-system-user.ts index 2d4b8bb..09ab863 100644 --- a/api/src/db/seeds/development/000.seed-system-user.ts +++ b/api/src/db/seeds/development/000.seed-system-user.ts @@ -7,8 +7,8 @@ import { User } from "@/models" export async function seed(): Promise { const systemUserAttributes: CreationAttributes = { - email: "system.user@alphane.com", - auth0Subject: "NO_LOGIN_system.user@alphane.com", + email: "system.user@calebburkedev.com", + auth0Subject: "NO_LOGIN_system.user@calebburkedev.com", firstName: "System", lastName: "User", displayName: "System User", diff --git a/api/src/db/seeds/production/000.seed-system-user.ts b/api/src/db/seeds/production/000.seed-system-user.ts index 2d4b8bb..09ab863 100644 --- a/api/src/db/seeds/production/000.seed-system-user.ts +++ b/api/src/db/seeds/production/000.seed-system-user.ts @@ -7,8 +7,8 @@ import { User } from "@/models" export async function seed(): Promise { const systemUserAttributes: CreationAttributes = { - email: "system.user@alphane.com", - auth0Subject: "NO_LOGIN_system.user@alphane.com", + email: "system.user@calebburkedev.com", + auth0Subject: "NO_LOGIN_system.user@calebburkedev.com", firstName: "System", lastName: "User", displayName: "System User", diff --git a/api/src/db/seeds/test/000.seed-system-user.ts b/api/src/db/seeds/test/000.seed-system-user.ts index 2d4b8bb..09ab863 100644 --- a/api/src/db/seeds/test/000.seed-system-user.ts +++ b/api/src/db/seeds/test/000.seed-system-user.ts @@ -7,8 +7,8 @@ import { User } from "@/models" export async function seed(): Promise { const systemUserAttributes: CreationAttributes = { - email: "system.user@alphane.com", - auth0Subject: "NO_LOGIN_system.user@alphane.com", + email: "system.user@calebburkedev.com", + auth0Subject: "NO_LOGIN_system.user@calebburkedev.com", firstName: "System", lastName: "User", displayName: "System User", diff --git a/docker-compose.development.yml b/docker-compose.development.yml index 23da572..1271909 100644 --- a/docker-compose.development.yml +++ b/docker-compose.development.yml @@ -3,7 +3,7 @@ x-default-environment: &default-environment NODE_ENV: development DB_HOST: db DB_USERNAME: &default-db-username calebburke - DB_DATABASE: calebburke_development + DB_DATABASE: calebburkedev_development DB_PASSWORD: &default-db-password DevPwd99! DB_PORT: &default-db-port 5432 DB_TRUST_SERVER_CERTIFICATE: "true" @@ -66,7 +66,7 @@ services: environment: <<: *default-environment NODE_ENV: test - DB_DATABASE: alphane_test + DB_DATABASE: calebburke_test DEFAULT_LOG_LEVEL: "info" DB_HEALTH_CHECK_START_PERIOD_SECONDS: 0 tty: true diff --git a/package-lock.json b/package-lock.json index b3992dc..7069107 100644 --- a/package-lock.json +++ b/package-lock.json @@ -1,10 +1,10 @@ { - "name": "alphane-development-tooling", + "name": "calebburkedev-development-tooling", "lockfileVersion": 3, "requires": true, "packages": { "": { - "name": "alphane-development-tooling", + "name": "calebburkedev-development-tooling", "devDependencies": { "eslint": "^9.33.0", "eslint-config-prettier": "^10.1.8", diff --git a/package.json b/package.json index 3868f7e..fc59f90 100644 --- a/package.json +++ b/package.json @@ -1,5 +1,5 @@ { - "name": "alphane-development-tooling", + "name": "calebburkedev-development-tooling", "private": true, "devDependencies": { "eslint": "^9.33.0", diff --git a/web/index.html b/web/index.html index 16ee076..76a9c09 100644 --- a/web/index.html +++ b/web/index.html @@ -25,7 +25,7 @@ name="viewport" content="width=device-width, initial-scale=1.0" /> - ALPHANE - Maintenance + calebburke.dev - Maintenance
diff --git a/web/src/App.vue b/web/src/App.vue index 3327592..d4b305f 100644 --- a/web/src/App.vue +++ b/web/src/App.vue @@ -9,7 +9,7 @@ - ALPHANE + CALEBBURKEDEV diff --git a/web/src/config.ts b/web/src/config.ts index 1f98d72..efd50b0 100644 --- a/web/src/config.ts +++ b/web/src/config.ts @@ -8,7 +8,7 @@ const prodConfig = { audience: "alphane-api", apiBaseUrl: "", webSocketBaseUrl: "", - applicationName: "ALPHANE", + applicationName: "calebburkedev", } const devConfig = { @@ -17,7 +17,7 @@ const devConfig = { audience: "alphane-api", apiBaseUrl: "http://localhost:3000", webSocketBaseUrl: "ws://localhost:3000", - applicationName: "ALPHANE", + applicationName: "calebburkedev", } const localProductionConfig = { @@ -26,7 +26,7 @@ const localProductionConfig = { audience: "alphane-api", apiBaseUrl: "http://localhost:8080", webSocketBaseUrl: "ws://localhost:8080", - applicationName: "ALPHANE (production)", + applicationName: "calebburkedev (production)", } let config = prodConfig diff --git a/web/src/layouts/logo/AppLogo.vue b/web/src/layouts/logo/AppLogo.vue index 9985c18..e735295 100644 --- a/web/src/layouts/logo/AppLogo.vue +++ b/web/src/layouts/logo/AppLogo.vue @@ -7,7 +7,7 @@
- ALPHANE + CALEB BURKE DEV
@@ -27,7 +27,7 @@