Skip to content

Commit 01dcf19

Browse files
🐛 Trying to fix something
1 parent f236e81 commit 01dcf19

File tree

4 files changed

+18
-1
lines changed

4 files changed

+18
-1
lines changed

app/app.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
<template>
22
<naive-config>
3+
<n-global-style />
34
<n-dialog-provider>
45
<n-notification-provider>
56
<naive-notification />

app/layouts/default.vue

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,6 +41,7 @@
4141
import IconLight from "~/assets/images/cloudy-lamb.png"
4242
4343
import type { MenuOption } from "naive-ui"
44+
import { NIcon } from "naive-ui"
4445
import { computed, h } from "vue"
4546
import { useRouter, useRoute, RouterLink } from "vue-router"
4647
import {

app/stores/user.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ export const useUserStore = defineStore("user", () => {
6161
console.error("Failed to fetch user... ", e)
6262
}
6363

64-
console.log(`[UserStore] Logged as @${user.value!.name}`)
64+
// console.log(`[UserStore] Logged as @${user.value!.name}`)
6565
} finally {
6666
isLoading.value = false
6767
currentFetchPromise.value = null

docker-compose.yml

Lines changed: 15 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,15 @@
1+
services:
2+
app:
3+
# This will build the Dockerfile in the current directory.
4+
# Alternatively, you can specify the image from a registry.
5+
# Replace 'your-github-username' with your actual GitHub username or organization.
6+
image: ghcr.io/solsynth/floating-island:latest
7+
build: .
8+
# This maps the .env file from your project root into the container.
9+
env_file:
10+
- .env
11+
# This maps port 3000 on your host to port 3000 in the container.
12+
ports:
13+
- "3000:3000"
14+
# This ensures the container restarts automatically unless it's stopped manually.
15+
restart: unless-stopped

0 commit comments

Comments
 (0)