mirror of
https://github.com/frappe/books.git
synced 2024-11-10 15:50:56 +00:00
ab21928142
travis: Create mysql database runs mysql backend tests
12 lines
252 B
JavaScript
12 lines
252 B
JavaScript
const server = require('frappejs/server');
|
|
|
|
server.start({
|
|
backend: 'mysql',
|
|
connection_params: {
|
|
host : "test_frappejs",
|
|
username : "test_frappejs",
|
|
password : "test_frappejs",
|
|
db_name : "test_frappejs"
|
|
}
|
|
});
|