mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
9 lines
231 B
JavaScript
9 lines
231 B
JavaScript
const server = require('frappejs/server');
|
|
const path = require('path');
|
|
|
|
server.start({
|
|
backend: 'sqlite',
|
|
connection_params: {db_path: 'test.db'},
|
|
static: './',
|
|
models_path: path.resolve(__dirname, './models')
|
|
}); |