- আপনার পিসিতে হেরেকুর কমান্ড লাইন টুল ইন্সটল করুন । তারপর opne comand line with ruby অ্যাপ ওপেন করি ।
- এইবার লারাভেল প্রজেক্ট ফোল্ডারে ডিরেক্টরি পরিবর্তন করি । e.g. c:\users\ cd d/ g:\laravel_blog\
- এইবার গিট ইনিসিয়ালাইজ করি আর add , commit করি।
4. এইবার Procfile ফাইল অ্যাড করি আর change commit করি।
$ git init Initialized empty Git repository $ git add . $ git commit -m "new laravel project"
5.echo web: vendor/bin/heroku-php-apache2 public/ > Procfile $ git add . $ git commit -m "Procfile for Heroku" [master 1eb2be6] Procfile for Heroku 1 file changed, 1 insertion(+) create mode 100644 Procfile
heroku create app_name
6. Give proper email and password for your hereku account .
7. Add build pack
php artisan key:generate --showheroku buildpacks:set heroku/php Buildpack set. Next release on app_name will use heroku/php. Run `git push heroku master` to create a new release using this buildpack.
$ heroku config:set APP_KEY=generated key
git push heroku master
heroku addons:add heroku-postgresql:hobby-dev (for adding database free)
Add this details to config/database.php and .envheroku config --app app_name (for getting database info in this format
DATABASE_URL: postgres://USERNAME:PASSWORD@HOSTNAME:PORT/DATABASE)
then $
git add .
$ git commit -m "Updated database configuration"
$ git push heroku master