Complete sermon itinerary application with Nuxt 3, SQLite, authentication, and Docker deployment

This commit is contained in:
2025-10-01 22:15:01 -04:00
parent dacaea6fa4
commit 1b282c05fe
26 changed files with 1245 additions and 0 deletions

36
nuxt.config.ts Normal file
View File

@@ -0,0 +1,36 @@
// https://nuxt.com/docs/api/configuration/nuxt-config
export default defineNuxtConfig({
compatibilityDate: '2024-04-03',
devtools: { enabled: true },
modules: [
'@nuxtjs/tailwindcss',
'@nuxt/ui'
],
app: {
head: {
title: 'New Life Christian Church - Sermons',
meta: [
{ charset: 'utf-8' },
{ name: 'viewport', content: 'width=device-width, initial-scale=1' },
{ name: 'description', content: 'Weekly sermons from New Life Christian Church' }
],
link: [
{ rel: 'icon', type: 'image/png', href: '/logos/favicon.png' },
{ rel: 'preconnect', href: 'https://fonts.googleapis.com' },
{ rel: 'preconnect', href: 'https://fonts.gstatic.com', crossorigin: '' },
{ rel: 'stylesheet', href: 'https://fonts.googleapis.com/css2?family=Inter:wght@300;400;500;600;700&display=swap' }
]
}
},
css: ['~/assets/css/main.css'],
runtimeConfig: {
authSecret: process.env.AUTH_SECRET || 'change-this-secret-in-production',
public: {
siteUrl: process.env.SITE_URL || 'https://newlife-christian.com'
}
}
})