# @lilith/user-preferences

User preference management and synchronization service

Backend service. See the `Dockerfile` / `docker-compose.yml` in the repo for
production-like local runs, or use the dev script below for in-process
iteration.

## Scripts

| Command                    | Definition                                          |
| -------------------------- | --------------------------------------------------- |
| `pnpm start`               | node src/server.js                                  |
| `pnpm dev`                 | nodemon src/server.js                               |
| `pnpm test`                | vitest run                                          |
| `pnpm test:watch`          | vitest                                              |
| `pnpm db:migrate`          | knex migrate:latest --knexfile src/db/knexfile.ts   |
| `pnpm db:migrate:rollback` | knex migrate:rollback --knexfile src/db/knexfile.ts |
| `pnpm db:migrate:status`   | knex migrate:status --knexfile src/db/knexfile.ts   |
| `pnpm db:migrate:make`     | knex migrate:make --knexfile src/db/knexfile.ts     |
| `pnpm db:seed`             | knex seed:run --knexfile src/db/knexfile.ts         |
| `pnpm db:seed:make`        | knex seed:make --knexfile src/db/knexfile.ts        |

## Layout

- `__tests__/`
- `src/`

## Working on this package

The fastest local loop is via Nx:

```bash
pnpm nx test lilith-user-preferences
pnpm nx lint lilith-user-preferences
pnpm nx build lilith-user-preferences
```

When Nx is unhappy (usually because another worktree has duplicate project
names), bypass it with the underlying tools from this directory:

```bash
npx tsc --noEmit
npx vitest run
```

See the [root README](../../../README.md) for monorepo-wide conventions (catalog
deps, commit format, git workflow). See the
[Contributor Guide](../../../docs/CONTRIBUTING.md) for the full PR workflow.
