1
0

Add fullscreen & fix notes

This commit is contained in:
2025-07-18 19:30:16 +02:00
parent 82c88243b4
commit edd1478aa5
9 changed files with 229 additions and 2777 deletions

View File

@@ -5,13 +5,13 @@ FROM node:18-alpine
WORKDIR /app
# Copy package files
COPY package.json pnpm-lock.yaml ./
COPY package.json yarn.lock ./
# Install pnpm globally
RUN npm install -g pnpm
# Install yarn globally
RUN npm install -g yarn
# Install dependencies
RUN pnpm install --frozen-lockfile
RUN yarn install
# Copy source code
COPY . .
@@ -27,4 +27,4 @@ ENV NODE_ENV=production
ENV DATABASE_PATH=/app/data/database.sqlite
# Start the application
CMD ["pnpm", "start"]
CMD ["yarn", "start"]

2758
server/package-lock.json generated

File diff suppressed because it is too large Load Diff

View File

@@ -11,9 +11,7 @@
"keywords": [],
"author": "",
"license": "ISC",
"packageManager": "pnpm@10.13.1",
"dependencies": {
"@nextcloud/cdav-library": "^1.1.0",
"cors": "^2.8.5",
"dotenv": "^17.2.0",
"express": "^5.1.0",