telemarket - online-store bot
⚙️ Installation
git clone https://github.com/egorgasay/telemarket
cd telemarket
export TELEGRAM_BOT_KEY=YOUR_BOT_KEY
make run
🔍️ Purpose
With this bot, you can easily sell clothes via Telegram.
🏆 Challenges:
- CI ✅
- Deploy ✅
- Messages with photos ✅
- Personal Data Storage Agreement
- Administrator Mode (Add, Remove, Change)
- Analytics Mode (Watch stats)
- Uploading statistics to Excel
- Order tracking
- Discount system (as module)
- Bonus system (as module)
- Mystery Box system (as module)
👕 Change items list
You can start selling your own products by changing the default values in the items.json file.
items.json
[
{
"name": "t-shirt black",
"description": "100% cotton",
"price": 1500.00,
"quantity": 1
},
{
"name": "t-shirt white",
"description": "100% cotton",
"price": 1500.00,
"quantity": 1
}
]
✅ Run tests
make test