質問編集履歴

1

Procfileとrequirements.txtに記載してあるコードを追加しました。

2021/11/08 04:14

投稿

Tomoya-Kaitsuka
Tomoya-Kaitsuka

スコア4

test CHANGED
File without changes
test CHANGED
@@ -109,3 +109,45 @@
109
109
  ・「 https://git.heroku.com/flask-todo-app-tk.git」というサイトは既に、誰かが作成しているため使えない
110
110
 
111
111
  ・ 「https://git.heroku.com/flask-todo-app-tk012345.git」のサイトは既に作成されている。
112
+
113
+
114
+
115
+ ```Proc
116
+
117
+ web: gunicorn app:app --log-file=-
118
+
119
+ ```
120
+
121
+ ```requirements
122
+
123
+
124
+
125
+ requirements.txtに記載してある内容
126
+
127
+
128
+
129
+ click==8.0.3
130
+
131
+ colorama==0.4.4
132
+
133
+ Flask==2.0.2
134
+
135
+ Flask-SQLAlchemy==2.5.1
136
+
137
+ greenlet==1.1.2
138
+
139
+ gunicorn==20.1.0
140
+
141
+ itsdangerous==2.0.1
142
+
143
+ Jinja2==3.0.2
144
+
145
+ MarkupSafe==2.0.1
146
+
147
+ SQLAlchemy==1.4.26
148
+
149
+ Werkzeug==2.0.2
150
+
151
+ ```
152
+
153
+ Pythonは3.8.5です。