5ae864a3c8
Closes #34
39 lines
840 B
Plaintext
39 lines
840 B
Plaintext
var config = {
|
|
environment: 'test'
|
|
,port: 8888
|
|
,host: '127.0.0.1'
|
|
,enable_cors: true
|
|
,cache_enabled: false
|
|
,postgres_auth_user: 'test_cartodb_user_<%= user_id %>'
|
|
,postgres: {
|
|
user: "publicuser",
|
|
host: '127.0.0.1',
|
|
port: 5432,
|
|
srid: 4326,
|
|
extent: "-20005048.4188,-20005048.4188,20005048.4188,20005048.4188",
|
|
simplify: true
|
|
}
|
|
,millstone: {
|
|
cache_basedir: '/tmp/cdb-tiler-test/millstone'
|
|
}
|
|
,redis: {
|
|
host: '127.0.0.1',
|
|
port: 6333,
|
|
idleTimeoutMillis: 1,
|
|
reapIntervalMillis: 1
|
|
}
|
|
,sqlapi: {
|
|
protocol: 'http',
|
|
host: 'localhost.lan',
|
|
port: 8080,
|
|
version: 'v1'
|
|
}
|
|
,varnish: {
|
|
host: '',
|
|
port: null,
|
|
ttl: 86400
|
|
}
|
|
};
|
|
|
|
module.exports = config;
|