質問編集履歴
1
回答を受けて試した点を追記
test
CHANGED
File without changes
|
test
CHANGED
@@ -239,3 +239,111 @@
|
|
239
239
|
2020-06-22T13:44:37.729897+00:00 heroku[router]: at=error code=H10 desc="App crashed" method=GET path="/favicon.ico" host=test-ttmanager.herokuapp.com request_id=01fffd4e-ec3d-478f-84a3-add40e566298 fwd="※*.※*.※*.170" dyno= connect= service= status=※* bytes= protocol=https
|
240
240
|
|
241
241
|
```
|
242
|
+
|
243
|
+
|
244
|
+
|
245
|
+
#追記 回答を受けて、試したこと
|
246
|
+
|
247
|
+
|
248
|
+
|
249
|
+
> deployしたdirにcdしていないようにみえます。
|
250
|
+
|
251
|
+
Gemfilや app, config, public, db などのあるdirにcdする操作をその前に行ってください
|
252
|
+
|
253
|
+
|
254
|
+
|
255
|
+
とあったので、ルートディレクトリから対象のdirに移動して色々試しましたが、結果うまくいきませんでした。何がいけなかったのか?どうしたらいいのか、ご教示頂けますと幸いです。
|
256
|
+
|
257
|
+
|
258
|
+
|
259
|
+
①対象dirに移動
|
260
|
+
|
261
|
+
②念のため``heroku apps``で確認したが、ちゃんと入っている
|
262
|
+
|
263
|
+
```
|
264
|
+
|
265
|
+
== **@**.com Apps
|
266
|
+
|
267
|
+
App 1
|
268
|
+
|
269
|
+
App 2
|
270
|
+
|
271
|
+
App 3
|
272
|
+
|
273
|
+
```
|
274
|
+
|
275
|
+
|
276
|
+
|
277
|
+
③移動したdirに、リモートリポジトリ が存在するか確認
|
278
|
+
|
279
|
+
```
|
280
|
+
|
281
|
+
***:***(アプリ名) user$ git remote -v
|
282
|
+
|
283
|
+
heroku https://git.heroku.com/(アプリ名).git (fetch)
|
284
|
+
|
285
|
+
heroku https://git.heroku.com/(アプリ名).git (push)
|
286
|
+
|
287
|
+
```
|
288
|
+
|
289
|
+
|
290
|
+
|
291
|
+
④公式ガイドを元に、再度デプロイし、``heroku run db:migrate``するが、失敗。
|
292
|
+
|
293
|
+
|
294
|
+
|
295
|
+
```
|
296
|
+
|
297
|
+
****:(アプリ名) user$ heroku login
|
298
|
+
|
299
|
+
heroku: Press any key to open up the browser to login or q to exit:
|
300
|
+
|
301
|
+
Opening browser to https://cli-auth.heroku.com/auth/cli/browser/****-****-****-****-********
|
302
|
+
|
303
|
+
Logging in... done
|
304
|
+
|
305
|
+
Logged in as ****@***.com
|
306
|
+
|
307
|
+
****:(アプリ名) user$ heroku git:clone -a (アプリ名)
|
308
|
+
|
309
|
+
Cloning into '(アプリ名)'...
|
310
|
+
|
311
|
+
remote: Counting objects: 707, done.
|
312
|
+
|
313
|
+
remote: Compressing objects: 100% (302/302), done.
|
314
|
+
|
315
|
+
remote: Total 707 (delta 364), reused 707 (delta 364)
|
316
|
+
|
317
|
+
Receiving objects: 100% (707/707), 238.07 KiB | 354.00 KiB/s, done.
|
318
|
+
|
319
|
+
Resolving deltas: 100% (364/364), done.
|
320
|
+
|
321
|
+
****:(アプリ名) user$ cd test-ttmanager
|
322
|
+
|
323
|
+
****:(アプリ名) user$ git add .
|
324
|
+
|
325
|
+
****:(アプリ名) user$ git commit -am "make it better"
|
326
|
+
|
327
|
+
On branch master
|
328
|
+
|
329
|
+
Your branch is up to date with 'heroku/master'.
|
330
|
+
|
331
|
+
|
332
|
+
|
333
|
+
nothing to commit, working tree clean
|
334
|
+
|
335
|
+
****:(アプリ名) user$ git push heroku master
|
336
|
+
|
337
|
+
Everything up-to-date
|
338
|
+
|
339
|
+
****:(アプリ名) user$ heroku run rails db:migrate
|
340
|
+
|
341
|
+
Running rails db:migrate on ⬢ test-ttmanager... up, run.7994 (Free)
|
342
|
+
|
343
|
+
Usage:
|
344
|
+
|
345
|
+
rails new APP_PATH [options]
|
346
|
+
|
347
|
+
(以下、質問当初と同じエラー)
|
348
|
+
|
349
|
+
```
|