Initial project push.

This commit is contained in:
dan612
2026-01-15 09:50:55 -05:00
commit c4312feb95
226 changed files with 32233 additions and 0 deletions

15
Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM php:8.4-fpm
# Install SQLite extension and Node.js
RUN apt-get update && apt-get install -y \
sqlite3 \
libsqlite3-dev \
curl \
&& docker-php-ext-install pdo_sqlite \
&& curl -fsSL https://deb.nodesource.com/setup_lts.x | bash - \
&& apt-get install -y nodejs \
&& rm -rf /var/lib/apt/lists/*
# Set working directory
WORKDIR /app
COPY ./src .