elao/symfony-standard

This package is abandoned and no longer maintained. No replacement package was suggested.

The elao/symfony-standard project

Installs: 314

Dependents: 0

Suggesters: 0

Security: 0

Stars: 18

Watchers: 22

Forks: 8

Open Issues: 2

Type:project


README

This project is deprecated, please use https://github.com/manala/manalize instead.

Symfony 3.0 Join the chat at https://gitter.im/Elao/symfony-standard

Requirements

Note: The $ stands for your machine CLI, while the stands for the VM CLI

Installation

Create the project and access to its directory (where [app] is your application name)

$ composer create-project elao/symfony-standard [app] dev-master --prefer-dist --no-install
$ cd [app]

Install and prepare the project dependencies

$ make setup

Customize

TODO

Usage

Your app is accessible via http://app.vendor.dev/app_dev.php

Faq

VirtualBox DHCP Server

A host only network interface you're attempting to configure via DHCP already has a conflicting host only adapter with DHCP enabled. The DHCP on this adapter is...

$ VBoxManage dhcpserver remove --netname HostInterfaceNetworking-vboxnet0

OSX DNS Cache

If you virtual machine does not answer, or ping to 127.0.53.53

On Yosemite 10.10 to 10.10.3

$ sudo discoveryutil mdnsflushcache
$ sudo discoveryutil udnsflushcaches

Before Yosemite and on Yosemite 10.10.4

$ sudo killall -HUP mDNSResponder

See: https://support.apple.com/kb/HT202516

OSX ssh key forwarding

$ ssh-add -K ~/.ssh/[your_private_key]

Vagrant process crash

An action 'foo' was attempted on the machine 'bar', but another process is already executing an action on the machine. Vagrant locks each machine for access by only one process at a time. Please wait until the other Vagrant process finishes modifying this machine, then try again.

Kill vagrant ruby process, and try again

$ killall ruby

Nfs shares without password confirmation

Edit /etc/sudoers.d/vagrant

$ sudo vi /etc/sudoers.d/vagrant

Copy/paste the following lines:

Cmnd_Alias VAGRANT_EXPORTS_ADD = /usr/bin/tee -a /etc/exports
Cmnd_Alias VAGRANT_NFSD = /sbin/nfsd restart
Cmnd_Alias VAGRANT_EXPORTS_REMOVE = /usr/bin/sed -E -e /*/ d -ibak /etc/exports
%admin ALL=(root) NOPASSWD: VAGRANT_EXPORTS_ADD, VAGRANT_NFSD, VAGRANT_EXPORTS_REMOVE