Useful tools for developers.
- Code Snippets Manager
- ...
- Install VirtualBox
- Install vagrant
- Download composer if you haven't already
- Check out source code
- Run
php composer.phar install
- Execute
./SETUP-DEV-ENVIRONMENT.sh
- Run
vagrant up
and wait till finished - Navigate in your browser to http://develshelper.apache.dev/app_dev.php
- DONE. start development now ;)
- Install git
- Make sure the
<git-install-dir>\usr\bin
is in your path (or install ssh separately) - Set
core.autocrlf
totrue
. Choose at install time or do it later with:
git config --local core.autocrlf true
- Install VirtualBox
- Install vagrant
- Check out source code
- Edit
C:\Windows\System32\drivers\etc
- Open
C:\Windows\System32\drivers\etc
in explorer and edithosts
as administrator - add following lines in there:
192.168.56.170 develshelper.apache.dev www.develshelper.apache.dev
192.168.56.171 develshelper.nginx.dev www.develshelper.nginx.dev
- save and done here
- Copy
tools/vagrant/windows/nginx/puphpet
andtools/vagrant/windows/nginx/Vagrantfile
to root directory (directory there this README.md is) - Open command line (cmd.exe) (or use PhpStorm vagrant support) in root directory and execute
vagrant up
- execute
vagrant ssh
- type
cd /var/www/develshelper
and composer install
- Navigate in your browser to http://develshelper.apache.dev/app_dev.php
- DONE. start development now ;)