51
35

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?

More than 5 years have passed since last update.

単純なHTML/CSS/JSをHerokuにデプロイする時つまずいたこと

Posted at

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とかだと
アプリだと認識されねーよ

みたいな感じです。

解決方法

  1. composer.jsonを作る。
    中身は
composer.json
{}

だけでOK
2. index.phpを作る。
中身は

index.php
<?php include_once("index.html"); ?>

これでOKなはずです!
改めて外人ニキありがとうございます!

51
35
0

Register as a new user and use Qiita more conveniently

  1. You get articles that match your needs
  2. You can efficiently read back useful information
  3. You can use dark theme
What you can do with signing up
51
35

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?