Skip to content

Instantly share code, notes, and snippets.

@molotovbliss
Created May 7, 2014 17:33
Show Gist options
  • Save molotovbliss/8c735c34f015f578f737 to your computer and use it in GitHub Desktop.
Save molotovbliss/8c735c34f015f578f737 to your computer and use it in GitHub Desktop.
Simple Development File with Magento bootstrap.
<?php
/*
* This is a temporary file for development purposes only
*/
require_once('app/Mage.php');
umask(0);
ini_set('display_errors', 1);
Mage::setIsDeveloperMode(true);
Mage::app();
set_time_limit(0);
Mage::app()->setCurrentStore(Mage_Core_Model_App::ADMIN_STORE_ID);
// Code Here
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment