refactor(deploy-vercel): streamline deployment to Vercel, remove Docker/local deployment files, and harden path handling

This commit is contained in:
cto-new[bot]
2026-01-23 18:47:39 +00:00
parent affd9b2da9
commit af9be25f20
11 changed files with 192 additions and 198 deletions

23
config.example.json Normal file
View File

@@ -0,0 +1,23 @@
{
"keys": [
"your-api-key-1",
"your-api-key-2"
],
"accounts": [
{
"email": "example1@example.com",
"password": "your-password-1",
"token": ""
},
{
"email": "example2@example.com",
"password": "your-password-2",
"token": ""
},
{
"mobile": "12345678901",
"password": "your-password-3",
"token": ""
}
]
}