How to use ghost - 10 common examples

To help you get started, we’ve selected a few ghost examples, based on popular ways it is used in public projects.

Secure your code as it's written. Use Snyk Code to scan source code in minutes - no build needed - and fix issues immediately.

github gazooka / GhostInAzureWebApp / dbinit.js View on Github external
// let users know which database is being initialised
var logging = require('ghost-ignition').logging();
var config = require('ghost/core/server/config');
logging.info('Initialising ' + config.get('env'));

// if we're running in Azure and not configuring production, warn the user
if ((process.env.REGION_NAME) && (process.env.WEBSITE_SKU) && (!process.env.EMULATED) && (config.get('env') !== 'production')) {
	logging.warn('Appear to be running in Azure but not configuring production database');
};

// re-initialise database by resetting it and then initialising it
var KnexMigrator = require('knex-migrator');
knexMigrator = new KnexMigrator({
    knexMigratorFilePath: __dirname + '\\node_modules\\ghost'
});

logging.info('Resetting ' + config.get('env'));
knexMigrator.reset()
	.then(function onResetSuccess() {
		logging.info('Reset succeeded');
		knexMigrator.init()
			.then(function onInitSuccess() {
				logging.info('Initialisation succeeded');
github TryGhost / Ghost-Admin / app / utils / codemirror-mobile.js View on Github external
init = function init() {
    // Codemirror does not function on mobile devices, or on any iDevice
    if (device.mobile() || (device.tablet() && device.ios())) {
        $('body').addClass('touch-editor');

        Ember.touchEditor = true;

        // initialize FastClick to remove touch delays
        Ember.run.scheduleOnce('afterRender', null, function () {
            FastClick.attach(document.body);
        });

        TouchEditor = createTouchEditor();
        setupMobileCodeMirror();
    }
};
github TryGhost / Ghost-Admin / utils / codemirror-mobile.js View on Github external
init = function init() {
    // Codemirror does not function on mobile devices, or on any iDevice
    if (device.mobile() || (device.tablet() && device.ios())) {
        $('body').addClass('touch-editor');

        Ember.touchEditor = true;

        // initialize FastClick to remove touch delays
        Ember.run.scheduleOnce('afterRender', null, function () {
            FastClick.attach(document.body);
        });

        TouchEditor = createTouchEditor();
        setupMobileCodeMirror();
    }
};
github gazooka / GhostInAzureWebApp / server.js View on Github external
if (s[fn]) {
			return s[fn];
		};
	}
	return originalReadFileSync(file, options);
};

// replace standard readFileSync with our caching version
fs.readFileSync = cachedReadFileSync;

// if iisnode is being used, it defines the port we need to use in an environment
// variable; if this variable is defined, we override the config with it otherwise
// the web app won't work correctly
if (process.env.PORT) {
	// we do the require in-place here to ensure it comes from the cache
	require('ghost/core/server/config').set('server:port', process.env.PORT);
}

// on Windows, Ctrl-C (SIGINT) won't be recognised unless we go via readline
if (process.platform === 'win32') {
	var rl = require('readline').createInterface({
		input: process.stdin,
		output: process.stdout
	});

	rl.on('SIGINT', function () {
		process.emit('SIGINT');
	});
}

//
// content of ghost\index.js
github gazooka / GhostInAzureWebApp / server.template.js View on Github external
if (s[fn]) {
			return s[fn];
		};
	}
	return originalReadFileSync(file, options);
};

// replace standard readFileSync with our caching version
fs.readFileSync = cachedReadFileSync;

// if iisnode is being used, it defines the port we need to use in an environment
// variable; if this variable is defined, we override the config with it otherwise
// the web app won't work correctly
if (process.env.PORT) {
	// we do the require in-place here to ensure it comes from the cache
	require('ghost/core/server/config').set('server:port', process.env.PORT);
}

// on Windows, Ctrl-C (SIGINT) won't be recognised unless we go via readline
if (process.platform === 'win32') {
	var rl = require('readline').createInterface({
		input: process.stdin,
		output: process.stdout
	});

	rl.on('SIGINT', function () {
		process.emit('SIGINT');
	});
}
github TryGhost / Ghost-Admin / app / views / mobile / parent-view.js View on Github external
this.set('changeLayout', function changeLayout() {
            if (mobileQuery.matches) {
                // transitioned to mobile layout, so show content
                self.showContent();
            } else {
                // went from mobile to desktop
                self.showAll();
            }
        });
    }.on('init'),
github TryGhost / Ghost-Admin / views / mobile / parent-view.js View on Github external
this.set('changeLayout', function changeLayout() {
            if (mobileQuery.matches) {
                // transitioned to mobile layout, so show content
                self.showContent();
            } else {
                // went from mobile to desktop
                self.showAll();
            }
        });
    }.on('init'),
github TryGhost / Ghost-Admin / app / router.js View on Github external
import Ember from 'ember';
import ghostPaths from 'ghost/utils/ghost-paths';
import documentTitle from 'ghost/utils/document-title';

var Router = Ember.Router.extend({
    location: 'trailing-history', // use HTML5 History API instead of hash-tag based URLs
    rootURL: ghostPaths().adminRoot, // admin interface lives under sub-directory /ghost

    clearNotifications: Ember.on('didTransition', function () {
        this.notifications.closePassive();
        this.notifications.displayDelayed();
    })
});

documentTitle();

Router.map(function () {
    this.route('setup');
    this.route('signin');
    this.route('signout');
    this.route('signup', {path: '/signup/:token'});
    this.route('forgotten');
    this.route('reset', {path: '/reset/:token'});
github cobyism / ghost-on-heroku / core / client / models / base.js View on Github external
type: 'GET'
        });
    },

    save: function () {
        return ic.ajax.request(this.url, {
            type: 'PUT',
            dataType: 'json',
            // @TODO: This is passing _oldWillDestory and _willDestroy and should not.
            data: JSON.stringify(this.getProperties(Ember.keys(this)))
        });
    }
});

BaseModel.apiRoot = ghostPaths().apiRoot;
BaseModel.subdir = ghostPaths().subdir;
BaseModel.adminRoot = ghostPaths().adminRoot;

export default BaseModel;
github cobyism / ghost-on-heroku / core / client / models / base.js View on Github external
return ic.ajax.request(this.url, {
            type: 'GET'
        });
    },

    save: function () {
        return ic.ajax.request(this.url, {
            type: 'PUT',
            dataType: 'json',
            // @TODO: This is passing _oldWillDestory and _willDestroy and should not.
            data: JSON.stringify(this.getProperties(Ember.keys(this)))
        });
    }
});

BaseModel.apiRoot = ghostPaths().apiRoot;
BaseModel.subdir = ghostPaths().subdir;
BaseModel.adminRoot = ghostPaths().adminRoot;

export default BaseModel;