📜  heroku procfile laravel - Shell-Bash 代码示例

📅  最后修改于: 2022-03-11 14:50:03.091000             🧑  作者: Mango

代码示例1
git init
echo 'web: vendor/bin/heroku-php-apache2 public/' >> Procfile
git add .
git commit -m 'init'
heroku create [app-name]
heroku config:set APP_KEY=$(php artisan key:generate --show)
git push heroku