deployment-railway

📁 forever19735/garbage 📅 5 days ago
3
总安装量
2
周安装量
#62182
全站排名
安装命令
npx skills add https://github.com/forever19735/garbage --skill deployment-railway

Agent 安装分布

opencode 2
gemini-cli 2
claude-code 2
github-copilot 2
codex 2
kimi-cli 2

Skill 文档

When to use this skill

Deploy Flask LINE bots to Railway.app, configure environment variables, set up webhooks, and monitor deployments.

How to use it

Required Files

Procfile:

web: python main.py

requirements.txt:

Flask==3.0.0
line-bot-sdk==3.5.0
APScheduler==3.10.4
firebase-admin==6.2.0

main.py entry point:

if __name__ == "__main__":
    port = int(os.getenv("PORT", 5000))
    app.run(host="0.0.0.0", port=port)

Environment Variables

Set in Railway dashboard:

  • LINE_CHANNEL_ACCESS_TOKEN – LINE Bot token
  • LINE_CHANNEL_SECRET – Channel secret
  • FIREBASE_CONFIG_JSON – Complete Firebase JSON

Deployment Steps

  1. Connect GitHub repo to Railway
  2. Set environment variables
  3. Get generated domain URL
  4. Configure LINE webhook: https://your-app.up.railway.app/callback

Monitoring

Add health check:

@app.route("/", methods=['GET'])
def health_check():
    return "Bot is running!", 200

View logs in Railway dashboard → Deployments → View Logs

Common Issues

  • Crashed: Check Procfile and PORT usage
  • Webhook 400: Verify LINE_CHANNEL_SECRET
  • Firebase failed: Check JSON format in env var
  • No scheduled jobs: Upgrade to Hobby plan ($5/mo)

Links