Skip to content

Commit 1c805c2

Browse files
committed
chore: Do stuff
1 parent 7d3c597 commit 1c805c2

File tree

3 files changed

+18
-0
lines changed

3 files changed

+18
-0
lines changed

.github/workflows/main.yml

Lines changed: 11 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -31,6 +31,17 @@ jobs:
3131
secrets:
3232
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
3333

34+
staging_toledo:
35+
name: Release artifact (toledo)
36+
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0
37+
with:
38+
tag: branch
39+
path: ./apps/toledo
40+
dockerfile: ./apps/toledo/Dockerfile
41+
dockerhub_repository: toledo
42+
secrets:
43+
dockerhub_token: ${{ secrets.DOCKERHUB_TOKEN }}
44+
3445
release_constellation_dashboard:
3546
name: Release artifact (constellation-dashboard)
3647
uses: spuxx-dev/ci-cd/.github/workflows/pnpm_build_and_push.yml@v4.1.0

apps/toledo/src/features/main/routes/HomeRoute.vue

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@ import MainSidebar from '../sidebar/MainSidebar.vue';
77
88
useProtection();
99
const { session } = SessionManager;
10+
// const isThea =
1011
</script>
1112

1213
<template>
@@ -15,5 +16,8 @@ const { session } = SessionManager;
1516
v-if="session"
1617
:title="` ${intl('main.route.index.greeting', { name: session.given_name })}`"
1718
>
19+
<div v-if="session.sub === '5bac0409-18a5-4f61-adc1-e0cf9b8dbbf7'">
20+
Ich liebe Dich. ❤️
21+
</div>
1822
</PageContent>
1923
</template>

apps/toledo/vite.config.ts

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,9 @@ import tsconfigPaths from 'vite-tsconfig-paths';
77

88
export default defineConfig({
99
plugins: [vue(), ViteYaml(), tsconfigPaths()],
10+
server: {
11+
port: 3000,
12+
},
1013
define: {
1114
APP_VERSION: JSON.stringify(process.env.npm_package_version),
1215
},

0 commit comments

Comments
 (0)