CodeIgniter Forums
Suggestion - Vagrant setup for Development - Printable Version

+- CodeIgniter Forums (https://forum.codeigniter.com)
+-- Forum: CodeIgniter 4 (https://forum.codeigniter.com/forumdisplay.php?fid=28)
+--- Forum: CodeIgniter 4 Feature Requests (https://forum.codeigniter.com/forumdisplay.php?fid=29)
+--- Thread: Suggestion - Vagrant setup for Development (/showthread.php?tid=63297)

Pages: 1 2


Suggestion - Vagrant setup for Development - attrox - 10-16-2015

I'm excited about CodeIgniter 4 and looking forward to contributing with the development process.
Just a suggestion to throw out there. It'll be nice to have a Vagrant box setup so that everyone can have an identical development setup from the get go.


RE: Suggestion - Vagrant setup for Development - kilishan - 10-16-2015

That's something that has been discussed, but none of us are Vagrant gurus so it might take a little bit to pull together. Currently, I'm using Rasmus' box. Sadly, it doesn't have XDebug installed, and I might have to do that soon. Missing the debugging features. Smile


RE: Suggestion - Vagrant setup for Development - sdupont - 12-08-2015

I made a very basic vagrant project, it may be useful for some people that want to quickly setup CI: https://github.com/banzo/vagrant_codeigniter

It uses VirtualBox for the virtualisation and ScotchBox for the LAMP stack.


RE: Suggestion - Vagrant setup for Development - ciadmin - 12-08-2015

@sdupont This looks super simple!

It looks like the ScothBox stack has PHP 5.6 ... PHP7 would be nice Undecided


RE: Suggestion - Vagrant setup for Development - kenjis - 12-08-2015

If you like CentOS, try my vagrant: https://github.com/kenjis/vagrant-centos7-php


RE: Suggestion - Vagrant setup for Development - kilishan - 12-08-2015

(12-08-2015, 05:02 PM)kenjis Wrote: If you like CentOS, try my vagrant: https://github.com/kenjis/vagrant-centos7-php

This repo looks pretty nice! How hard would it be to get nginx up and running in it, also? Would love to be able to work with both on the same dev site.


RE: Suggestion - Vagrant setup for Development - gadelat - 12-13-2015

vagrant is obsolete, how about docker?


RE: Suggestion - Vagrant setup for Development - josepostiga - 01-22-2016

I've been using Laravel Homestead with CodeIgniter. It works out-of-the-box.

I feel dirty Smile


RE: Suggestion - Vagrant setup for Development - jtneal - 02-14-2016

I suggest using PuPHPet to setup a Vagrant box. PHP7 is an option, as is installation of XDebug. I suggest Ubuntu 14.04 personally, but everyone has their preferred flavors.


RE: Suggestion - Vagrant setup for Development - skunkbad - 02-14-2016

(10-16-2015, 11:53 AM)attrox Wrote: I'm excited about CodeIgniter 4 and looking forward to contributing with the development process.
Just a suggestion to throw out there. It'll be nice to have a Vagrant box setup so that everyone can have an identical development setup from the get go.

Is it really good that everyone has the same development environment? I can think of  some reasons why it may not be good, like if there may be a problem with a specific version of PHP, or a specific operating system, yet everyone is developing on the same environment so they don't notice.