Initial commit

This commit is contained in:
MDeeApp
2025-10-04 16:30:22 +02:00
commit 3a17854242
100 changed files with 14764 additions and 0 deletions

15
backend/Dockerfile Normal file
View File

@@ -0,0 +1,15 @@
FROM node:18-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install --production
COPY . .
RUN mkdir -p /app/data
EXPOSE 3000
CMD ["node", "server.js"]

BIN
backend/noScreenshot.png Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 MiB

19
backend/package.json Normal file
View File

@@ -0,0 +1,19 @@
{
"name": "fb-tracker-backend",
"version": "1.0.0",
"description": "Backend for Facebook post tracker",
"main": "server.js",
"scripts": {
"start": "node server.js",
"dev": "nodemon server.js"
},
"dependencies": {
"express": "^4.18.2",
"cors": "^2.8.5",
"better-sqlite3": "^9.2.2",
"uuid": "^9.0.1"
},
"devDependencies": {
"nodemon": "^3.0.2"
}
}

1944
backend/server.js Normal file

File diff suppressed because it is too large Load Diff