回答編集履歴

1

誤字修正

2019/06/16 02:36

投稿

nico25
nico25

スコア830

test CHANGED
@@ -16,11 +16,11 @@
16
16
 
17
17
  ```
18
18
 
19
- echo "web: gunicorn flaskr:app -w 4" > Procfile
19
+ pip freeze > requirements.txt
20
20
 
21
- python -V | sed -n "s/ /-/p" > runtime.txt
21
+ echo "web: gunicorn flaskr:app" > Procfile
22
22
 
23
- pip freeze > requirements.txt
23
+ python -V | sed -n "s/Python /python-/p" > runtime.txt
24
24
 
25
25
  ```
26
26