4
5

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.

Vagrantとシェルスクリプトで自動環境構築 ~php7, Codeigniter3~

Last updated at Posted at 2017-10-29

#内容
手動でPHPの環境を作っていたので、自動で構築できるようにしてみました。

  • ubuntu 14.04

  • php7.0

  • apache

  • mysql

  • Codeigniter 3.1.6

  • composer

#環境
既にVagrantをインストールしているWindows環境です。

使い方

ソースコード
git cloneしてvagrant upするだけです。

#ディレクトリ構造

最終的にこんな感じになります。

.
├── application
├── composer.json
├── composer.lock
├── configFiles(設定ファイル・構築後削除して下さい)
│   ├── composer.json
│   ├── config.php
│   ├── database.php
│   ├── index.php
│   ├── init.sql
│   ├── my.cnf
│   └── project.conf
├── provision.sh
├── public(ドキュメントルート)
├── README.md
├── Vagrantfile
└── vendor

感想

5分ほどで環境構築できるので便利です。
よかったら使ってみて下さい。

4
5
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
4
5

Delete article

Deleted articles cannot be recovered.

Draft of this article would be also deleted.

Are you sure you want to delete this article?