Elao/symfony-standard

Name: symfony-standard

Owner: Elao

Description: Our version of the Symfony standard edition

Created: 2013-07-19 12:49:22.0

Updated: 2017-05-30 17:54:03.0

Pushed: 2018-01-15 12:17:09.0

Homepage: null

Size: 475

Language: PHP

GitHub Committers

UserMost Recent Commit# Commits

Other Committers

UserEmailMost Recent Commit# Commits

README

Elao Symfony Standard Edition

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

This work is supported by the National Institutes of Health's National Center for Advancing Translational Sciences, Grant Number U24TR002306. This work is solely the responsibility of the creators and does not necessarily represent the official views of the National Institutes of Health.