1
0

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.

LOLIPOPマネージドクラウドで、Laravel環境を構築する

Last updated at Posted at 2018-10-07

スクリーンショット 2018-10-08 7.39.48.png
2018年12月31日まで無料!
らしいので試しに触ってみました。

##0. 事前準備
###カスタムドメイン
マネージドクラウド ヘルプセンター、下記リンクより
カスタムドメインの設定方法

###プロジェクト作成
ダッシュボード 新しいプロジェクトの追加
https://mc.lolipop.jp/console/projects/new

###SSH接続
公開鍵を設定し、SSHコマンドを参考にSSHクライアントで接続(iTerm2, terminal, TeraTerm等)

##1. Check Path

$ cd ~
$ pwd
/var/www

##2. Composer Install

$ curl -sS https://getcomposer.org/installer | php
$ mv composer.phar composer
$ alias composer='php /var/www/composer'

##3. Laravel Install

$ composer create-project --prefer-dist laravel/laravel laravel

##4. To make a Path

$ ln -s laravel/public/ html

##5. Set .env
データベースの設定は、
ダッシュボード・プロジェクトの一覧より
https://mc.lolipop.jp/console/projects

$ vim /var/www/laravel/.env

Check

プロジェクトURL or カスタムドメインで設定したドメインにアクセスして確認

##example
make:authコマンド実行

$ cd /var/www/laravel
$ php artisan make:auth
$ php artisan migrate

スクリーンショット 2018-10-08 7.53.04.png

みなさん試しに触ってみてはいかがでしょうか。

1
0
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
1
0

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?