Heroku普通に使えね?
何も知らない僕は思うわけです。「このHerokuって奴普通にwebサーバーとして使えるんじゃ...?」
エラー発生!
残念!w
! No default language could be detected for this app.
HINT: This occurs when Heroku cannot detect the buildpack to use for this application automatically.
See https://devcenter.heroku.com/articles/buildpacks
! Push failed
ぼく「?」
上記はgithubとHerokuを連携した時のエラーログです。
その時のディレクトリ構造は
hoge┬index.html
└README.md
なんとわかりやすいディレクトリ構造でしょう
と、上記のエラーが発生。
解決への道
調べた結果、こんなサイトが
How to Run a Simple HTML/CSS/Javascript Application on Heroku
外人ニキには感謝しかない...
本文の内容は
シンプルなHTMLとかだと
アプリだと認識されねーよ
みたいな感じです。
解決方法
- composer.jsonを作る。
中身は
composer.json
{}
だけでOK
2. index.phpを作る。
中身は
index.php
<?php include_once("index.html"); ?>
これでOKなはずです!
改めて外人ニキありがとうございます!