質問編集履歴

1

git push時の表示、フォルダ構成を追加

2019/02/27 04:18

投稿

shunke434343
shunke434343

スコア22

test CHANGED
File without changes
test CHANGED
@@ -78,7 +78,7 @@
78
78
 
79
79
 
80
80
 
81
- ALLOWED_HOSTS = []
81
+ ALLOWED_HOSTS = ['*']
82
82
 
83
83
 
84
84
 
@@ -294,6 +294,74 @@
294
294
 
295
295
  ```
296
296
 
297
+ git push heroku master
298
+
299
+ ```
300
+
301
+ (django2) shimizushunyuunoMacBook-Pro:project5 shimizushunyuu$ git push heroku master
302
+
303
+ Enumerating objects: 7, done.
304
+
305
+ Counting objects: 100% (7/7), done.
306
+
307
+ Delta compression using up to 4 threads
308
+
309
+ Compressing objects: 100% (4/4), done.
310
+
311
+ Writing objects: 100% (4/4), 349 bytes | 349.00 KiB/s, done.
312
+
313
+ Total 4 (delta 3), reused 0 (delta 0)
314
+
315
+ remote: Compressing source files... done.
316
+
317
+ remote: Building source:
318
+
319
+ remote:
320
+
321
+ remote: -----> Python app detected
322
+
323
+ remote: -----> Installing requirements with pip
324
+
325
+ remote:
326
+
327
+ remote: -----> $ python manage.py collectstatic --noinput
328
+
329
+ remote: 222 static files copied to '/tmp/build_81a3b3c79381c655da2c216eda585d9b/staticfiles', 658 post-processed.
330
+
331
+ remote:
332
+
333
+ remote: -----> Discovering process types
334
+
335
+ remote: Procfile declares types -> web
336
+
337
+ remote:
338
+
339
+ remote: -----> Compressing...
340
+
341
+ remote: Done: 101.9M
342
+
343
+ remote: -----> Launching...
344
+
345
+ remote: Released v18
346
+
347
+ remote: https://shunka-blog.herokuapp.com/ deployed to Heroku
348
+
349
+ remote:
350
+
351
+ remote: Verifying deploy... done.
352
+
353
+ To https://git.heroku.com/shunka-blog.git
354
+
355
+ 50d10c3..2a9623c master -> master
356
+
357
+
358
+
359
+ ```
360
+
361
+ フォルダ構成
362
+
363
+ ![フォルダ](c85fee128b6fbd21ee12167886e7a02c.png)
364
+
297
365
  ### 試したこと
298
366
 
299
367