Python+Flaskをvercelにデプロイする – 【Windows】

Python+Flaskをvercelにデプロイする – 【Windows】

前提

  • Pythonインストール済(Python 3.9.10)

ファイル

各ファイル内容です。

test.py

from flask import Flask
app = Flask(__name__)
 
@app.route('/')
def hello():
    return "Hello World"
 
if __name__ == "__main__":
    app.run(debug=True)

requirements.txt

Flask=3.0.0

vercel.json

{
   "version": 2,
   "builds": [
       {
           "src": "./test.py",
           "use": "@vercel/python"
       }
   ],
   "routes": [
       {
           "src": "/(.*)",
           "dest": "/test.py"
       }
   ]
}

この3ファイルになります。

gitリポジトリ作成

gitリポジトリ作成します。

git init
git add .
git commit -m "first commit"
git branch -M main
git remote add origin https://github.com/takahashi-h5/flask_test.git
git push -u origin main

vercelとgithub連携

vercelのアカウント作成します。サインイン後、「Add New」-「Project」を選択します。

「import」を押します。

「Deploy」を押します。Framework Presetは「Other」で良いです。

「Congratulations!」みたいなメッセージが表示された画面が出たら「Continue to Dashboard」を押します。

これでこちらにデプロイできました。

 

 

株式会社CONFRAGE ITソリューション事業部をもっと見る

今すぐ購読し、続きを読んで、すべてのアーカイブにアクセスしましょう。

続きを読む

タイトルとURLをコピーしました