diff --git a/quasar.config.js b/quasar.config.js index 03742e9..34a9798 100644 --- a/quasar.config.js +++ b/quasar.config.js @@ -79,8 +79,16 @@ module.exports = configure(function (/* ctx */) { // Full list of options: https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#devServer devServer: { - // https: true - open: true, // opens browser window automatically + // https: true, + // open: true, // opens browser window automatically + port: 4000, + strictport: true, + // For reverse-proxying via haproxy + hmr: { + clientPort: 443, + protocol: 'wss', + timeout: 0, + }, }, // https://v2.quasar.dev/quasar-cli-vite/quasar-config-js#framework diff --git a/src/assets/projectx_avatar.png b/src/assets/projectx_avatar.png new file mode 100644 index 0000000..91cd5a3 Binary files /dev/null and b/src/assets/projectx_avatar.png differ diff --git a/src/assets/projectx_avatar256.png b/src/assets/projectx_avatar256.png new file mode 100644 index 0000000..40345fd Binary files /dev/null and b/src/assets/projectx_avatar256.png differ diff --git a/src/assets/take5_avatar32.png b/src/assets/take5_avatar32.png new file mode 100644 index 0000000..c8e2e1f Binary files /dev/null and b/src/assets/take5_avatar32.png differ diff --git a/src/boot/appwrite.ts b/src/boot/appwrite.ts index 73cf5ae..a5d9462 100644 --- a/src/boot/appwrite.ts +++ b/src/boot/appwrite.ts @@ -23,7 +23,7 @@ const account = new Account(client); const databases = new Databases(client); let appRouter: Router; -export default boot(async ({ app, router }) => { +export default boot(async ({ router }) => { // Initialize store const authStore = useAuthStore(); await authStore.init(); diff --git a/src/components/ResourceScheduleViewerComponent.vue b/src/components/ResourceScheduleViewerComponent.vue new file mode 100644 index 0000000..b4a8b20 --- /dev/null +++ b/src/components/ResourceScheduleViewerComponent.vue @@ -0,0 +1,134 @@ + + + diff --git a/src/pages/IndexPage.vue b/src/pages/IndexPage.vue index 44b4bc9..1dd958b 100644 --- a/src/pages/IndexPage.vue +++ b/src/pages/IndexPage.vue @@ -8,7 +8,6 @@ :key="link.name" > import { links } from 'src/router/navlinks.js'; -import { useAuthStore } from 'stores/auth'; import ToolbarComponent from 'components/ToolbarComponent.vue'; - -const auth = useAuthStore(); diff --git a/src/pages/schedule/BoatReservationPage.vue b/src/pages/schedule/BoatReservationPage.vue index 8ba731d..2e0e3e0 100644 --- a/src/pages/schedule/BoatReservationPage.vue +++ b/src/pages/schedule/BoatReservationPage.vue @@ -1,165 +1,181 @@