mirror of
https://github.com/yanguo888/fakabot.git
synced 2026-06-20 12:30:40 +00:00
Update contact info to Telegram: https://t.me/sonhshu
This commit is contained in:
@@ -48,9 +48,7 @@ vim config.json # 填写你的配置
|
|||||||
### 4. 购买授权码
|
### 4. 购买授权码
|
||||||
|
|
||||||
**联系购买**:
|
**联系购买**:
|
||||||
- Telegram: @fakabot_support
|
- Telegram: https://t.me/sonhshu
|
||||||
- Email: support@fakabot.com
|
|
||||||
- 微信: fakabot2025
|
|
||||||
|
|
||||||
### 5. 保存授权码
|
### 5. 保存授权码
|
||||||
|
|
||||||
@@ -79,9 +77,7 @@ python3 bot.py
|
|||||||
|
|
||||||
## 📞 购买授权
|
## 📞 购买授权
|
||||||
|
|
||||||
- **Telegram**: @fakabot_support
|
- **Telegram**: https://t.me/sonhshu
|
||||||
- **Email**: support@fakabot.com
|
|
||||||
- **微信**: fakabot2025
|
|
||||||
|
|
||||||
---
|
---
|
||||||
|
|
||||||
|
|||||||
+1
-3
@@ -31,9 +31,7 @@ def show_purchase_info():
|
|||||||
print("⚠️ 需要授权码才能运行")
|
print("⚠️ 需要授权码才能运行")
|
||||||
print("="*60)
|
print("="*60)
|
||||||
print("\n💰 购买授权请联系:")
|
print("\n💰 购买授权请联系:")
|
||||||
print(" Telegram: @fakabot_support")
|
print(" Telegram: https://t.me/sonhshu")
|
||||||
print(" Email: support@fakabot.com")
|
|
||||||
print(" 微信: fakabot2025")
|
|
||||||
print("\n💳 订阅价格:")
|
print("\n💳 订阅价格:")
|
||||||
print(" 月付:50 USDT/月")
|
print(" 月付:50 USDT/月")
|
||||||
print(" 季付:135 USDT/季(优惠10%)")
|
print(" 季付:135 USDT/季(优惠10%)")
|
||||||
|
|||||||
+134
@@ -0,0 +1,134 @@
|
|||||||
|
# 📤 发布到 GitHub
|
||||||
|
|
||||||
|
## ✅ Git 已初始化完成
|
||||||
|
|
||||||
|
代码已经提交到本地 Git 仓库。
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🚀 下一步:创建 GitHub 仓库
|
||||||
|
|
||||||
|
### 第1步:在 GitHub 创建仓库
|
||||||
|
|
||||||
|
1. 访问 https://github.com/new
|
||||||
|
2. 填写信息:
|
||||||
|
- **Repository name**: `fakabot`
|
||||||
|
- **Description**: `Telegram 自动发卡机器人 - 需要授权码运行`
|
||||||
|
- **Public** (公开)
|
||||||
|
- **不要勾选** README、.gitignore、License(我们已经有了)
|
||||||
|
3. 点击 **Create repository**
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 第2步:推送代码
|
||||||
|
|
||||||
|
创建仓库后,GitHub 会显示推送命令。
|
||||||
|
|
||||||
|
**如果你的 GitHub 用户名是 `yourname`**,运行:
|
||||||
|
|
||||||
|
```bash
|
||||||
|
cd /Users/gugegebaidu/Desktop/fakabot/github_unbreakable
|
||||||
|
|
||||||
|
# 添加远程仓库
|
||||||
|
git remote add origin https://github.com/yourname/fakabot.git
|
||||||
|
|
||||||
|
# 推送代码
|
||||||
|
git branch -M main
|
||||||
|
git push -u origin main
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
### 第3步:输入 GitHub 凭证
|
||||||
|
|
||||||
|
推送时会要求输入:
|
||||||
|
- **Username**: 你的 GitHub 用户名
|
||||||
|
- **Password**: 使用 Personal Access Token(不是密码)
|
||||||
|
|
||||||
|
#### 如何获取 Personal Access Token?
|
||||||
|
|
||||||
|
1. 访问 https://github.com/settings/tokens
|
||||||
|
2. 点击 **Generate new token** → **Generate new token (classic)**
|
||||||
|
3. 填写:
|
||||||
|
- **Note**: `fakabot`
|
||||||
|
- **Expiration**: `No expiration`
|
||||||
|
- **Select scopes**: 勾选 `repo`
|
||||||
|
4. 点击 **Generate token**
|
||||||
|
5. **复制 token**(只显示一次)
|
||||||
|
6. 在推送时,用 token 作为密码
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 📝 完整命令
|
||||||
|
|
||||||
|
```bash
|
||||||
|
# 1. 进入目录
|
||||||
|
cd /Users/gugegebaidu/Desktop/fakabot/github_unbreakable
|
||||||
|
|
||||||
|
# 2. 添加远程仓库(替换为你的用户名)
|
||||||
|
git remote add origin https://github.com/你的用户名/fakabot.git
|
||||||
|
|
||||||
|
# 3. 推送
|
||||||
|
git branch -M main
|
||||||
|
git push -u origin main
|
||||||
|
|
||||||
|
# 4. 输入凭证
|
||||||
|
# Username: 你的GitHub用户名
|
||||||
|
# Password: Personal Access Token
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## ✅ 推送成功后
|
||||||
|
|
||||||
|
访问你的仓库:`https://github.com/你的用户名/fakabot`
|
||||||
|
|
||||||
|
你会看到:
|
||||||
|
- ✅ 完整的代码
|
||||||
|
- ✅ README 说明
|
||||||
|
- ✅ 订阅价格:50 USDT/月
|
||||||
|
- ✅ 购买联系方式
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 🎉 完成!
|
||||||
|
|
||||||
|
现在你可以:
|
||||||
|
1. 分享 GitHub 链接
|
||||||
|
2. 开始推广
|
||||||
|
3. 接收订单
|
||||||
|
|
||||||
|
**GitHub 链接**:`https://github.com/你的用户名/fakabot`
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
## 💡 推广文案
|
||||||
|
|
||||||
|
### Twitter
|
||||||
|
```
|
||||||
|
🚀 开源了我的 Telegram 自动发卡机器人
|
||||||
|
|
||||||
|
✨ 4种支付方式
|
||||||
|
⚡ Redis缓存优化
|
||||||
|
💰 仅需 50 USDT/月
|
||||||
|
|
||||||
|
GitHub: https://github.com/你的用户名/fakabot
|
||||||
|
|
||||||
|
#Telegram #Bot #Python
|
||||||
|
```
|
||||||
|
|
||||||
|
### V2EX
|
||||||
|
```
|
||||||
|
标题:[项目] Fakabot - Telegram 自动发卡机器人
|
||||||
|
|
||||||
|
GitHub 有完整代码展示,需要授权码才能运行。
|
||||||
|
|
||||||
|
💰 订阅:50 USDT/月
|
||||||
|
✨ 功能:4种支付方式、自动发货、Redis缓存
|
||||||
|
|
||||||
|
GitHub: https://github.com/你的用户名/fakabot
|
||||||
|
```
|
||||||
|
|
||||||
|
---
|
||||||
|
|
||||||
|
**准备好了吗?现在就去创建 GitHub 仓库吧!** 🚀
|
||||||
Reference in New Issue
Block a user