Skip to content

Instantly share code, notes, and snippets.

@martinhbramwell
Last active August 29, 2015 14:19
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 martinhbramwell/640e89ea46e0fc652c97 to your computer and use it in GitHub Desktop.
Save martinhbramwell/640e89ea46e0fc652c97 to your computer and use it in GitHub Desktop.
meteoris custom config
#!/bin/bash
#
rm -fr client/routers/jobs.js
rm -fr client/views/jobs/*.html
rm -fr client/views/jobs/*.js
rm -fr client/views/jobs
rm -fr lib/collections/Jobs.js
rm -fr lib/controllers/JobsController.js
rm -fr server/JobsServer.js
/**
* This Code was created on April 2014
* If you find any bug, unreadable code, messy code, potential bug code, etc
* Please contact me at:
* Ega Radiegtya / radiegtya@yahoo.co.id / 085641278479
*/
/**
* Edit this class value as you need
*/
App = {
id: "73xWmYM6nKmMa5ERB",
name: "Meteoris",
version: "0.9.7",
// baseUrl: "http://128.199.173.212:3007", //baseUrl from your hosting IP address
baseUrl: "http://qtst:3000",
// mongoUrl: 'mongodb://demo:demo@localhost:27017/meteoris', //mongoUrl from your hosting IP address
// mongoUrl: 'mongodb://localhost:3001/meteor/',
mongoUrl: 'mongodb://mongotahr:27017/meteoris', //mongoUrl from your hosting IP address
activateMugen: true, //change to false on production
};
/**
* Don't edit this if you don't know what exactly are you doing
*/
UI.registerHelper('app', function(option, value) {
return App[option];
});
#!/bin/bash
#
export MONGO_URL=mongodb://mongotahr:27017/meteoris
# export SELENIUM_BROWSER=firefox
export SELENIUM_BROWSER=
# rm -fr .meteor/local/ && rm -fr packages/tests-proxy/ && meteor
rm -fr packages/tests-proxy/ && meteor
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment