-
-
Save micheleorselli/6053607 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
application: symfony-engine-ed | |
version: 1 | |
runtime: php | |
api_version: 1 | |
threadsafe: true | |
handlers: | |
- url: /favicon\.ico | |
static_files: web/favicon.ico | |
upload: web/favicon\.ico | |
- url: /bundles | |
static_dir: web/bundles | |
- url: /app_dev\.php.* | |
script: web/app_dev.php | |
- url: .* | |
script: web/app.php |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
namespace { | |
$loader = require_once __DIR__.'/autoload.php'; | |
org\bovigo\vfs\vfsStreamWrapper::register(); | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
monolog: | |
handlers: | |
main: | |
type: syslog | |
level: debug |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public function getCacheDir() | |
{ | |
return ‘vfs://cache/’.$this->environment; | |
} | |
public function getLogDir() | |
{ | |
return ‘vfs://cache/logs’; | |
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
parameters: | |
kernel.cache_dir: 'vfs://cache' |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google_app_engine.enable_functions = "phpversion, phpinfo, php_sapi_name" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
google_appengine/dev_appserver.py --php_executable_path=/usr/bin/php-cgi /var/www/symfony-gae-edition | |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
appcfg.py -R update /var/www/symfony-gae-edition/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment