実現したいこと
Laravelアプリをherokuへデプロイしたいです。
現在起きている問題点
Herokuへのデプロイについて参考書を見ながら、Herokuにアプリ作成・データベースの設定等を終えて、Herokuへのデプロイを行いました。
git push heroku maste
を行ったところ、
Enumerating objects: 1, done. Counting objects: 100% (1/1), done. Writing objects: 100% (1/1), 226 bytes | 226.00 KiB/s, done. Total 1 (delta 0), reused 0 (delta 0), pack-reused 0 remote: Compressing source files... done. remote: Building source: remote: remote: -----> Building on the Heroku-20 stack remote: -----> Using buildpack: heroku/php remote: -----> PHP app detected remote: -----> Bootstrapping... remote: -----> Installing platform packages... remote: - php (8.0.9) remote: - ext-mbstring (bundled with php) remote: - composer (2.1.5) remote: - apache (2.4.48) remote: - nginx (1.20.1) remote: -----> Installing dependencies... remote: Composer version 2.1.5 2021-07-23 10:35:47 remote: Installing dependencies from lock file remote: Verifying lock file contents can be installed on current platform. remote: Package operations: 50 installs, 0 updates, 0 removals remote: - Installing doctrine/inflector (2.0.3): Extracting archive remote: - Installing doctrine/lexer (1.2.1): Extracting archive remote: - Installing dragonmantank/cron-expression (v2.3.1): Extracting archive remote: - Installing symfony/polyfill-ctype (v1.23.0): Extracting archive remote: - Installing phpoption/phpoption (1.7.5): Extracting archive remote: - Installing vlucas/phpdotenv (v3.6.8): Extracting archive remote: - Installing symfony/css-selector (v5.3.0): Extracting archive remote: - Installing tijsverkoyen/css-to-inline-styles (2.2.3): Extracting archive remote: - Installing symfony/polyfill-php80 (v1.23.0): Extracting archive remote: - Installing symfony/polyfill-php72 (v1.23.0): Extracting archive remote: - Installing symfony/polyfill-mbstring (v1.23.0): Extracting archive remote: - Installing symfony/var-dumper (v4.4.26): Extracting archive remote: - Installing symfony/routing (v4.4.25): Extracting archive remote: - Installing symfony/process (v4.4.26): Extracting archive remote: - Installing symfony/polyfill-php73 (v1.23.0): Extracting archive remote: - Installing symfony/polyfill-intl-normalizer (v1.23.0): Extracting archive remote: - Installing symfony/polyfill-intl-idn (v1.23.0): Extracting archive remote: - Installing symfony/deprecation-contracts (v2.4.0): Extracting archive remote: - Installing symfony/mime (v5.3.2): Extracting archive remote: - Installing symfony/http-foundation (v4.4.26): Extracting archive remote: - Installing symfony/http-client-contracts (v2.4.0): Extracting archive remote: - Installing symfony/event-dispatcher-contracts (v1.1.9): Extracting archive remote: - Installing symfony/event-dispatcher (v4.4.25): Extracting archive remote: - Installing psr/log (1.1.4): Extracting archive remote: - Installing symfony/debug (v4.4.25): Extracting archive remote: - Installing symfony/error-handler (v4.4.26): Extracting archive remote: - Installing symfony/http-kernel (v4.4.26): Extracting archive remote: - Installing symfony/finder (v4.4.25): Extracting archive remote: - Installing psr/container (1.1.1): Extracting archive remote: - Installing symfony/service-contracts (v2.4.0): Extracting archive remote: - Installing symfony/console (v4.4.26): Extracting archive remote: - Installing symfony/polyfill-iconv (v1.23.0): Extracting archive remote: - Installing egulias/email-validator (2.1.25): Extracting archive remote: - Installing swiftmailer/swiftmailer (v6.2.7): Extracting archive remote: - Installing paragonie/random_compat (v2.0.20): Extracting archive remote: - Installing ramsey/uuid (3.9.3): Extracting archive remote: - Installing psr/simple-cache (1.0.1): Extracting archive remote: - Installing opis/closure (3.6.2): Extracting archive remote: - Installing symfony/translation-contracts (v2.4.0): Extracting archive remote: - Installing symfony/translation (v4.4.26): Extracting archive remote: - Installing nesbot/carbon (2.50.0): Extracting archive remote: - Installing monolog/monolog (2.3.1): Extracting archive remote: - Installing league/mime-type-detection (1.7.0): Extracting archive remote: - Installing league/flysystem (1.1.4): Extracting archive remote: - Installing league/commonmark (1.6.6): Extracting archive remote: - Installing laravel/framework (v6.20.30): Extracting archive remote: - Installing fideloper/proxy (4.4.1): Extracting archive remote: - Installing nikic/php-parser (v4.12.0): Extracting archive remote: - Installing psy/psysh (v0.10.8): Extracting archive remote: - Installing laravel/tinker (v2.6.1): Extracting archive remote: Generating optimized autoload files remote: > Illuminate\Foundation\ComposerScripts::postAutoloadDump remote: > @php artisan package:discover --ansi remote: Discovered Package: fideloper/proxy remote: Discovered Package: laravel/tinker remote: Discovered Package: nesbot/carbon remote: Package manifest generated successfully. remote: 38 packages you are using are looking for funding. remote: Use the `composer fund` command to find out more! remote: -----> Preparing runtime environment... remote: NOTICE: No Procfile, using 'web: heroku-php-apache2'. remote: -----> Checking for additional extensions to install... remote: -----> Discovering process types remote: Procfile declares types -> web remote: remote: -----> Compressing... remote: Done: 50.6M remote: -----> Launching... remote: Released v14 remote: https://thing-admin.herokuapp.com/ deployed to Heroku remote: remote: Verifying deploy... done. To https://git.heroku.com/thing-admin.git 6cf86a7..1a3cb38 master -> master
と表示されました。
remote: NOTICE: No Procfile, using 'web: heroku-php-apache2'.
という部分が、本来
web: heroku-php-apache2 public/
とならないといけないのですが、public/部分を読み込んでくれません。
試したこと①
〇ファイル名やファイル内の誤字脱字確認
Procfileファイル名を再度確認のため変えたり、ファイル内の
web: vendor/bin/heroku-php-apache2 public/
を誤字脱字防止のために再度コピペしたりしてみましたが読み込みませんでした。
試したこと②
〇一度、強制的に動かしてみる
解決策として、挙げられていたものの中に「一度強制的に動かしてみる」というものがあったので、
git commit --allow-empty -m "任意のコミットメッセージ" git push heroku master
を行いましたが、変わることはありませんでした。
試したこと③
〇git add.を使って、再度gitに変更点を保存してみる
git add . git commit -m "fix to deploy" git push heroku master
を行いましたが、状況は変わらず解決にはは至りませんでした。
考えられる問題点(関係ないとの指摘を受けた)
web.phpにアセットのHTTPS化のために、ルートを1つ開けているのですが、こちらがundifined状態になっています。
今回のエラーとは関係ないとのことでしたが一応共有します。
他にサイトを検索しましたが、直接関連のあるような解決策が見つからなかったため、こちらでご質問させて頂きました。
よろしければご教授お願いします。
回答1件
あなたの回答
tips
プレビュー
バッドをするには、ログインかつ
こちらの条件を満たす必要があります。