3
1

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 3 years have passed since last update.

cloud9 環境構築

Last updated at Posted at 2021-02-11

メモです。参考にしないでください。

cloud9環境構築

#gitの設定

##EC2のボリュームの変更。
AWSから
EC2
インスタンスを選択し、『アクション』
『ボリュームの変更』10→15にする

##PHPのメモリ上限の変更

# 念のためシステムの設定ファイルをバックアップ
$ sudo cp --backup=numbered -f /etc/php.ini /etc/php.ini

# PHPのメモリ拡張
$ sudo sed -i -e "s/memory_limit = \(.*\)/memory_limit = -1/g" /etc/php.ini

# 結果確認
$ php -i | grep memory_limit
# -> memory_limitが-1になっていれば成功

##プロジェクトを作成
$ cd ~/environment
$ composer create-project --prefer-dist laravel/laravel プロジェクト名 "5.*"

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

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?