generated from alphane/template
More template changes
This commit is contained in:
@@ -7,8 +7,8 @@ import { User } from "@/models"
|
||||
|
||||
export async function seed(): Promise<void> {
|
||||
const systemUserAttributes: CreationAttributes<User> = {
|
||||
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",
|
||||
|
||||
@@ -7,8 +7,8 @@ import { User } from "@/models"
|
||||
|
||||
export async function seed(): Promise<void> {
|
||||
const systemUserAttributes: CreationAttributes<User> = {
|
||||
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",
|
||||
|
||||
@@ -7,8 +7,8 @@ import { User } from "@/models"
|
||||
|
||||
export async function seed(): Promise<void> {
|
||||
const systemUserAttributes: CreationAttributes<User> = {
|
||||
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",
|
||||
|
||||
@@ -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
|
||||
|
||||
Generated
+2
-2
@@ -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",
|
||||
|
||||
+1
-1
@@ -1,5 +1,5 @@
|
||||
{
|
||||
"name": "alphane-development-tooling",
|
||||
"name": "calebburkedev-development-tooling",
|
||||
"private": true,
|
||||
"devDependencies": {
|
||||
"eslint": "^9.33.0",
|
||||
|
||||
+1
-1
@@ -25,7 +25,7 @@
|
||||
name="viewport"
|
||||
content="width=device-width, initial-scale=1.0"
|
||||
/>
|
||||
<title>ALPHANE - Maintenance</title>
|
||||
<title>calebburke.dev - Maintenance</title>
|
||||
</head>
|
||||
<body>
|
||||
<div id="app"></div>
|
||||
|
||||
+1
-1
@@ -9,7 +9,7 @@
|
||||
</template>
|
||||
<PageLoader
|
||||
v-else-if="isLoadingAuth0 || isLoadingCurrentUser"
|
||||
message="ALPHANE"
|
||||
message="CALEBBURKEDEV"
|
||||
/>
|
||||
<PageLoader
|
||||
v-else-if="!isReady"
|
||||
|
||||
@@ -19,7 +19,7 @@
|
||||
class="mt-1 ml-3 rotyr-font"
|
||||
style="font-size: 26px; color: #505682"
|
||||
>
|
||||
ALPHANE
|
||||
CALEBBURKEDEV
|
||||
</div>
|
||||
</div>
|
||||
</RouterLink>
|
||||
|
||||
+3
-3
@@ -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
|
||||
|
||||
@@ -7,7 +7,7 @@
|
||||
<img
|
||||
class="ml-0 mt-1"
|
||||
style="height: 36px; transform: rotate(-12deg)"
|
||||
:src="AlphaneLogo"
|
||||
:src="AppLogoSmall"
|
||||
/>
|
||||
<div v-if="sidebarMini || mdAndDown"></div>
|
||||
<div
|
||||
@@ -19,7 +19,7 @@
|
||||
class="mt-1 ml-3"
|
||||
style="font-size: 26px; color: #505682"
|
||||
>
|
||||
ALPHANE
|
||||
CALEB BURKE DEV
|
||||
</div>
|
||||
</div>
|
||||
</RouterLink>
|
||||
@@ -27,7 +27,7 @@
|
||||
</template>
|
||||
|
||||
<script setup>
|
||||
import AlphaneLogo from "@/assets/alphane_logo_small.png"
|
||||
import AppLogoSmall from "@/assets/app_logo_small.png"
|
||||
|
||||
import { useDisplay } from "vuetify"
|
||||
import useInterface from "@/use/use-interface"
|
||||
|
||||
@@ -1,5 +1,5 @@
|
||||
<template>
|
||||
<PageLoader message="ALPHANE" />
|
||||
<PageLoader message="CALEBBURKEDEV" />
|
||||
</template>
|
||||
|
||||
<script lang="ts" setup>
|
||||
|
||||
@@ -21,7 +21,7 @@
|
||||
class="text-h1 textPrimary font-weight-semibold mb-0"
|
||||
style="font-size: 2.5rem !important"
|
||||
>
|
||||
ALPHANE
|
||||
CALEBBURKEDEV
|
||||
</h2>
|
||||
<div
|
||||
class="card-subtitle mb-6"
|
||||
|
||||
Reference in New Issue
Block a user