2017 © Pedro Peláez
 

project symfony-standard

The elao/symfony-standard project

image

elao/symfony-standard

The elao/symfony-standard project

  • Wednesday, March 28, 2018
  • by benji07
  • Repository
  • 21 Watchers
  • 16 Stars
  • 306 Installations
  • PHP
  • 0 Dependents
  • 0 Suggesters
  • 7 Forks
  • 2 Open issues
  • 13 Versions
  • 0 % Grown

The README.md

Elao Symfony Standard Edition

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, (*1)

Requirements

Note: The $ stands for your machine CLI, while the stands for the VM CLI, (*2)

Installation

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

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

Install and prepare the project dependencies, (*4)

$ make setup

Customize

TODO, (*5)

Usage

Your app is accessible via http://app.vendor.dev/app_dev.php, (*6)

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..., (*7)

$ VBoxManage dhcpserver remove --netname HostInterfaceNetworking-vboxnet0

OSX DNS Cache

If you virtual machine does not answer, or ping to 127.0.53.53, (*8)

On Yosemite 10.10 to 10.10.3, (*9)

$ sudo discoveryutil mdnsflushcache
$ sudo discoveryutil udnsflushcaches

Before Yosemite and on Yosemite 10.10.4, (*10)

$ sudo killall -HUP mDNSResponder

See: https://support.apple.com/kb/HT202516, (*11)

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., (*12)

Kill vagrant ruby process, and try again, (*13)

$ killall ruby

Nfs shares without password confirmation

Edit /etc/sudoers.d/vagrant, (*14)

$ sudo vi /etc/sudoers.d/vagrant

Copy/paste the following lines:, (*15)

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

The Versions