自分がどの環境にいるのかを簡単に知らせる方法は何ですか? たとえば、現在の環境に応じて、以下を実行してredisに接続したいのですが、コマンドラインからこれを行うことはできますか?
app.configure('development', function(){
app.use(express.errorHandler({ dumpExceptions: true, showStack: true }));
var r = require("redis").createClient(6379,'127.0.0.1');
});
app.configure('production', function(){
app.use(express.errorHandler());
r = redis.createClient(6379,'46.137.195.230', { detect_buffers: true });
});