init commit

This commit is contained in:
2025-09-12 21:25:54 +09:00
commit 17efb2fb53
37 changed files with 12637 additions and 0 deletions

41
config/default.json Normal file
View File

@@ -0,0 +1,41 @@
{
"telegram": {
"token": "YOUR_TELEGRAM_BOT_TOKEN",
"webhookUrl": ""
},
"database": {
"host": "localhost",
"port": 5433,
"name": "telegram_tinder_bot",
"username": "postgres",
"password": ""
},
"app": {
"maxPhotos": 6,
"maxDistance": 100,
"minAge": 18,
"maxAge": 99,
"superLikesPerDay": 1,
"likesPerDay": 100,
"port": 3000
},
"features": {
"enableSuperLikes": true,
"enableLocationMatching": true,
"enablePushNotifications": false,
"enablePhotoVerification": false
},
"limits": {
"maxBioLength": 500,
"maxInterests": 10,
"maxNameLength": 50,
"photoMaxSize": 5242880,
"rateLimitPerMinute": 30
},
"messages": {
"welcomeMessage": "👋 Добро пожаловать в Telegram Tinder! Давайте создадим ваш профиль.",
"profileCompleteMessage": "✅ Ваш профиль готов! Теперь вы можете начать знакомиться.",
"matchMessage": "🎉 У вас новый матч!",
"noMoreProfilesMessage": "😔 Больше анкет нет. Попробуйте позже или расширьте параметры поиска."
}
}