mirror of
https://github.com/frappe/books.git
synced 2024-11-13 00:46:28 +00:00
9 lines
208 B
JavaScript
9 lines
208 B
JavaScript
const server = require('frappejs/server');
|
|
const path = require('path');
|
|
|
|
server.start({
|
|
backend: 'sqlite',
|
|
connectionParams: {dbPath: 'test.db'},
|
|
static: './',
|
|
models: require('./models')
|
|
}); |