Skip to content

Instantly share code, notes, and snippets.

@yasuken1990
Last active October 7, 2018 23:30
Show Gist options
  • Save yasuken1990/54da0fbb875d3c907e9d8c4c71b28735 to your computer and use it in GitHub Desktop.
Save yasuken1990/54da0fbb875d3c907e9d8c4c71b28735 to your computer and use it in GitHub Desktop.
LOLIPOPマネージドクラウドで、Laravel環境を構築する ref: https://qiita.com/yasuken/items/8184e8e744d6e0d2d1c5
$ cd ~
$ pwd
/var/www
$ curl -sS https://getcomposer.org/installer | php
$ mv composer.phar composer
$ alias composer='php /var/www/composer'
$ composer create-project --prefer-dist laravel/laravel laravel
$ ln -s laravel/public/ html
$ vim /var/www/laravel/.env
$ cd /var/www/laravel
$ php artisan make:auth
$ php artisan migrate
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment