Move data access to use-cases and IndexedDB repositories with optional remote fallback, changelog/sync ports, and encrypted local backup. Add production Docker Compose (nginx frontend + optional backend) and Apache host proxy configuration for deployment. Co-authored-by: Cursor <cursoragent@cursor.com>
9 lines
199 B
JavaScript
9 lines
199 B
JavaScript
import { noopSyncAdapter } from './noopSyncAdapter'
|
|
|
|
/**
|
|
* @returns {{pushChanges: Function, pullChanges: Function, ack: Function}}
|
|
*/
|
|
export function getSyncAdapter() {
|
|
return noopSyncAdapter
|
|
}
|