Files
cartodb/lib/assets/test/spec/fixtures/dashboard/config-model.fixture.js
2020-06-15 10:58:47 +08:00

12 lines
324 B
JavaScript

const ConfigModel = require('dashboard/data/config-model');
// Config model might as well be a singleton
const theConfig = new ConfigModel({
sql_api_template: 'http://{user}.wadus.com',
common_data_user: 'rick',
account_host: 'wadus.com',
maps_api_template: 'http://localhost:9000'
});
module.exports = theConfig;