Files
tg_tinder_bot/config/default.json
2025-09-12 21:25:54 +09:00

41 lines
1.2 KiB
JSON
Raw Blame History

This file contains ambiguous Unicode characters

This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

{
"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": "😔 Больше анкет нет. Попробуйте позже или расширьте параметры поиска."
}
}