Skip to content

Instantly share code, notes, and snippets.

@jimbojsb
Created February 16, 2010 05:03
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save jimbojsb/305305 to your computer and use it in GitHub Desktop.
Save jimbojsb/305305 to your computer and use it in GitHub Desktop.
---doctrine.php---
<?php
define('APPLICATION_PATH', realpath(dirname(__FILE__) . '/../application'));
define('APPLICATION_ENV', (getenv('APPLICATION_ENV') ? getenv('APPLICATION_ENV') : 'production'));
// Ensure library/ is on include_path
set_include_path(implode(PATH_SEPARATOR, array(
realpath(APPLICATION_PATH . '/../library'),
get_include_path(),
)));
/** Zend_Application */
require_once 'Zend/Application.php';
// Create application, bootstrap, and run
$application = new Zend_Application(
APPLICATION_ENV,
APPLICATION_PATH . '/configs/application.ini'
);
$application->bootstrap('Doctrine');
$config = array('data_fixtures_path' => '../tests/fixtures',
'models_path' => '../application/models',
'migrations_path' => 'migrations',
'yaml_schema_path' => 'schemas');
$cli = new Doctrine_Cli($config);
$cli->run($_SERVER['argv']);
?>
---doctrine---
#!/usr/local/zend/bin/php
<?php
chdir(dirname(__FILE__));
include('doctrine.php');
?>
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment