Ricerca…
Configurazioni avanzate dell'ambiente
Per applicazioni più complesse, ti consigliamo di creare un oggetto `` settings.json` usando più variabili d'ambiente.
if(Meteor.isServer){
Meteor.startup(function()){
// this needs to be run on the server
var environment, settings;
environment = process.env.METEOR_ENV || "development";
settings = {
development: {
public: {
package: {
name: "jquery-datatables",
description: "Sort, page, and filter millions of records. Reactively.",
owner: "LumaPictures",
repo: "meteor-jquery-datatables"
}
},
private: {}
},
staging: {
public: {},
private: {}
},
production: {
public: {},
private: {}
}
};
if (!process.env.METEOR_SETTINGS) {
console.log("No METEOR_SETTINGS passed in, using locally defined settings.");
if (environment === "production") {
Meteor.settings = settings.production;
} else if (environment === "staging") {
Meteor.settings = settings.staging;
} else {
Meteor.settings = settings.development;
}
console.log("Using [ " + environment + " ] Meteor.settings");
}
});
}
Specifica dei parametri dell'app con METEOR_SETTINGS
La variabile d'ambiente METEOR_SETTINGS può accettare oggetti JSON e Meteor.settings
oggetto nell'oggetto Meteor.settings
. Per prima cosa, aggiungi un settings.json
alla root dell'app con alcune informazioni di configurazione.
{
"public":{
"ga":{
"account":"UA-XXXXXXX-1"
}
}
}
Quindi dovrai avviare la tua applicazione usando il tuo file delle impostazioni.
# run your app in local development mode with a settings file
meteor --settings settings.json
# or bundle and prepare it as if you're running in production
# and specify a settings file
meteor bundle --directory /path/to/output
cd /path/to/output
MONGO_URL="mongodb://127.0.0.1:27017" PORT=3000 METEOR_SETTINGS=$(cat /path/to/settings.json) node main.js
È possibile accedere a queste impostazioni da Meteor.settings e utilizzate nella propria app.
Meteor.startup(function(){
if(Meteor.isClient){
console.log('Google Analytics Account', Meteor.settings.public.ga.account);
}
});
Rilevazione dell'ambiente sul server
Le variabili di ambiente sono anche disponibili per il server tramite l'oggetto process.env
.
if (Meteor.isServer) { Meteor.startup(function () { // detect environment by getting the root url of the application console.log(JSON.stringify(process.env.ROOT_URL)); // or by getting the port console.log(JSON.stringify(process.env.PORT)); // alternatively, we can inspect the entire process environment console.log(JSON.stringify(process.env)); }); }
Rilevamento dell'ambiente client utilizzando i metodi Meteor
Per rilevare l'ambiente sul server, dobbiamo creare un metodo di supporto sul server, in quanto il server determinerà l'ambiente in cui si trova e quindi chiamerà il metodo helper dal client. Fondamentalmente, trasmettiamo semplicemente le informazioni sull'ambiente dal server al client.
//------------------------------------------------------------------------------------------------------
// server/server.js
// we set up a getEnvironment method
Meteor.methods({
getEnvironment: function(){
if(process.env.ROOT_URL == "http://localhost:3000"){
return "development";
}else{
return "staging";
}
}
});
//------------------------------------------------------------------------------------------------------
// client/main.js
// and then call it from the client
Meteor.call("getEnvironment", function (result) {
console.log("Your application is running in the " + result + "environment.");
});
Rilevamento dell'ambiente client utilizzando NODE_ENV
A partire da Meteor 1.3, Meteor ora espone la variabile NODE_ENV
sul client per impostazione predefinita.
if (Meteor.isClient) { Meteor.startup(function () { if(process.env.NODE_ENV === "testing"){ console.log("In testing..."); } if(process.env.NODE_ENV === "production"){ console.log("In production..."); } }); }