server fixes
All checks were successful
ci / docker_image (push) Successful in 1m38s
ci / deploy (push) Successful in 16s

This commit is contained in:
Drake Marino 2025-03-28 12:04:31 -05:00
parent 77f3d182d4
commit f79aafab0b
3 changed files with 4 additions and 2 deletions

4
.gitignore vendored
View File

@ -28,4 +28,6 @@ vite.config.ts.timestamp-*
postgresql postgresql
# User uploads # User uploads
uploads uploads/logos/*
uploads/avatars/*
uploads/resumes/*

View File

@ -20,6 +20,7 @@ services:
- fbla25 - fbla25
volumes: volumes:
- ./.env:/srv/FBLA25/.env - ./.env:/srv/FBLA25/.env
- ./static/:/srv/FBLA25/static/
networks: networks:
fbla25: fbla25:

View File

@ -1,6 +1,5 @@
import adapter from '@sveltejs/adapter-node'; import adapter from '@sveltejs/adapter-node';
import { sveltePreprocess } from 'svelte-preprocess'; import { sveltePreprocess } from 'svelte-preprocess';
import { vitePreprocess } from '@sveltejs/vite-plugin-svelte';
/** @type {import('@sveltejs/kit').Config} */ /** @type {import('@sveltejs/kit').Config} */
const config = { const config = {