feat: Инициализация базовой структуры проекта Telegram-бота на NestJS, Telegraf и Drizzle ORM.

This commit is contained in:
2026-01-18 12:28:22 +03:00
parent 69b29fa474
commit c07685f6ab
27 changed files with 7818 additions and 1 deletions

21
docker-compose.yml Normal file
View File

@@ -0,0 +1,21 @@
version: "3.9"
services:
postgres:
container_name: postgres
image: postgres:13.3
environment:
POSTGRES_DB: "tg-bot"
POSTGRES_USER: "admin"
POSTGRES_PASSWORD: "admin"
volumes:
- .:/docker-entrypoint-initdb.d
ports:
- "5432:5432"
redis:
image: redis
container_name: redis
restart: always
environment:
- REDIS_PASSWORD=test
ports:
- "6379:6379"