Remove sensitive files from git

This commit is contained in:
Zwuck
2025-12-07 16:29:01 +05:00
parent 73278ffe53
commit bac7de6e14
3 changed files with 4 additions and 25 deletions

4
.gitignore vendored
View File

@@ -54,3 +54,7 @@ pids
# Diagnostic reports (https://nodejs.org/api/report.html)
report.[0-9]*.[0-9]*.[0-9]*.[0-9]*.json
# Docker
Dockerfile
docker-compose.yml

View File

@@ -1,13 +0,0 @@
FROM node:20-alpine
WORKDIR /app
COPY package*.json ./
RUN npm install
COPY . .
RUN npm run build
CMD ["npm", "run", "start:prod"]

View File

@@ -1,12 +0,0 @@
version: '3.8'
services:
app:
build: .
container_name: mental_health_bot
restart: always
volumes:
- ./src/data:/app/dist/data
- ./src/quotes.json:/app/dist/quotes.json
env_file:
- .env