mirror of
https://github.com/frappe/books.git
synced 2024-11-10 07:40:55 +00:00
10 lines
264 B
JavaScript
10 lines
264 B
JavaScript
|
const server = require('frappe-core/frappe/server');
|
||
|
const frappe = require('frappe-core');
|
||
|
const express = require('express');
|
||
|
|
||
|
server.start({
|
||
|
backend: 'sqllite',
|
||
|
connection_params: {db_path: 'test.db'}
|
||
|
}).then(() => {
|
||
|
frappe.app.use(express.static('./'));
|
||
|
});
|