netgusto / devserver-bundle
Development server console command with subdomain support, and automatic assets compilation.
Installs: 1 005
Dependents: 0
Suggesters: 0
Security: 0
Stars: 0
Watchers: 2
Forks: 0
Open Issues: 0
Type:symfony-bundle
Requires
- php: >=5.3.3
- symfony/framework-bundle: ~2.4
This package is not auto-updated.
Last update: 2024-11-09 18:48:42 UTC
README
Install
In composer.json
:
"require": { "netgusto/devserver-bundle": "dev-master" }
In app/AppKernel.php
:
$bundles = array( # [...] new Netgusto\DevServerBundle\NetgustoDevServerBundle(), # [...] );
Configure
In app/config.yml
:
netgusto_dev_server: tasks: - { command: php app/console server:run 0.0.0.0:8000 } - { command: php app/console assetic:dump --watch } - { command: ember serve, path: web/apps/calclient }
Use
php app/console server:dev