- Added billing models and repository for handling bills. - Introduced BillingService to manage payment initiation and bill creation. - Updated user service to remove ticket-related functionality. - Refactored settings to include new billing-related fields. - Removed ticket-related handlers and schemas. - Added new billing handlers for processing payments. - Updated database schema with new bills table and status enum. - Enhanced utility functions to calculate prices considering discounts. - Introduced prehandling for non-private messages. - Updated main application to initialize new billing services and repositories.
26 lines
742 B
Plaintext
26 lines
742 B
Plaintext
# Telegram Bot Token (Required)
|
|
# Get it from @BotFather on Telegram
|
|
BOT_TOKEN=your_bot_token_here
|
|
|
|
# Remnawave Configuration (Required)
|
|
REMNAWAVE_URL=https://your-remnawave-instance.com
|
|
REMNAWAVE_TOKEN=your_remnawave_api_token_here
|
|
SUBSCRIPTION_URL=https://your-subscription-page.com
|
|
|
|
# PostgreSQL Database Configuration
|
|
# These variables are used by docker-compose to set up the database container
|
|
POSTGRES_USER=malenia
|
|
POSTGRES_PASSWORD=change_me_to_a_secure_password
|
|
POSTGRES_DB=malenia_db
|
|
|
|
# Proxy Configuration (Optional)
|
|
# Leave empty if no proxy is needed
|
|
PROXY=
|
|
|
|
# Pricing and Limits Configuration (Optional - defaults provided in code)
|
|
MIN_DEVICES=3
|
|
MAX_DEVICES=12
|
|
PER_DEVICE_COST=50
|
|
WHITELIST_COST=100
|
|
WHITELIST_DEVICE_THRESHOLD=6
|