feat: add deployment guide, backup functionality, and cron jobs for automated backups

This commit is contained in:
2025-12-02 11:11:47 +01:00
parent 99853bb755
commit e6fab5ba31
8 changed files with 470 additions and 4 deletions

View File

@@ -5,8 +5,8 @@ FROM node:22.11.0
ENV TZ=Europe/Warsaw
RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
# Install git for development
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
# Install git and cron for development
RUN apt-get update && apt-get install -y git cron && rm -rf /var/lib/apt/lists/*
# Set the working directory
WORKDIR /app