jambda
Version:
Easy serverless rest api deploy! Jambda makes it easy to deploy database connected rest api's by providing the least amount of configuration.
36 lines (33 loc) • 624 B
JavaScript
export const production = () => {
return {
driver: 'rethinkdb',
host: '127.0.0.1',
port: '32773',
// username : 'test',
// password : 'test',
database: 'nano_test',
autoReconnect: true
}
}
export const development = () => {
return {
driver: 'rethinkdb',
host: '127.0.0.1',
port: '32773',
// username : 'test',
// password : 'test',
database: 'nano_test',
autoReconnect: true
}
}
export const test = () => {
return {
driver: 'rethinkdb',
host: '127.0.0.1',
port: '32773',
// username : 'test',
// password : 'test',
database: 'nano_test',
autoReconnect: true
}
}