mirror of
https://github.com/tiennm99/store-scraper-bot-java.git
synced 2026-05-14 15:53:30 +00:00
a4646c91ca
Introduces RawAppleAppCommand and RawGoogleAppCommand to allow admins to fetch and download raw JSON responses from the Apple App Store and Google Play Store scrapers. Refactors AppStoreScraper and GooglePlayScraper to expose rawApp methods and improves method naming for clarity. Updates StoreScrapeBot to register the new commands and adjusts .env.example for better configuration clarity.
23 lines
580 B
Bash
23 lines
580 B
Bash
# Copy this file to .env and customize the values for your environment
|
|
# cp .env.example .env
|
|
|
|
# Couchbase configuration
|
|
COUCHBASE_CONNECTION_STRING=couchbase://localhost
|
|
COUCHBASE_USERNAME=your_couchbase_username
|
|
COUCHBASE_PASSWORD=your_couchbase_password
|
|
COUCHBASE_BUCKET_NAME=store-scraper-bot
|
|
|
|
# Telegram Bot configuration
|
|
TELEGRAM_BOT_TOKEN=your_telegram_bot_token
|
|
TELEGRAM_BOT_USERNAME=your_telegram_bot_username
|
|
|
|
# Java configuration
|
|
JAVA_OPTS=-Xmx512m
|
|
|
|
# Logging configuration
|
|
LOG_LEVEL=INFO
|
|
|
|
# App configuration
|
|
ENV=DEVELOPMENT
|
|
ADMIN_IDS=1000001999,1000002000,1000002001
|