Files
travel 9e0644095f 重构为 HTTP SSO 扫码方案并引入 Vue3 前端
移除 Playwright 浏览器自动化,改用 passport/SSO HTTP 接口获取二维码与轮询登录;后端模块化拆分,前端替换为 Vue3 SPA。

Co-authored-by: Cursor <cursoragent@cursor.com>
2026-06-25 10:47:55 +08:00

12 lines
267 B
Python

#!/usr/bin/env python3
# -*- coding: utf-8 -*-
"""抖音 Cookie 一键提取 — 入口"""
from backend.app_factory import create_app
from backend.config import PORT
app = create_app()
if __name__ == "__main__":
app.run(debug=False, host="0.0.0.0", port=PORT)