Files
alla-allaos-fullstack/docs/operations/system-bootstrap.md
phaichayon a1cac84e2b task p-4.5
2026-06-29 16:07:03 +07:00

61 lines
1.1 KiB
Markdown

# System Bootstrap
## Fresh local development
```bash
npm install
ALLOW_DB_RESET=true npm run db:fresh
npm exec tsc --noEmit
npm run dev
```
## Fresh UAT or demo data
```bash
ALLOW_DB_RESET=true npm run db:fresh:uat
```
## Existing database upgrade
```bash
npm run db:migrate
npm run seed:system
```
## PDF template reseed only
```bash
npm run seed:pdf-template
```
Product Item template version:
```bash
# create product-v1 as inactive version
node --experimental-strip-types scripts/reseed-pdf-template-version.ts --template-variant=product-v1
# create and activate product-v1 immediately
node --experimental-strip-types scripts/reseed-pdf-template-version.ts --template-variant=product-v1 --activate
# restore legacy 1.0 as active version
npm run seed:pdf-template
```
## Verification
```bash
npm exec tsc --noEmit
npm run build
npm run verify:encoding
npm run verify:crm-access
npm run audit:pdf
```
## Script guide
- `db:*` = database lifecycle
- `seed:*` = data bootstrap
- `verify:*` = validation
- `audit:*` = diagnostics
- `legacy:*` = historical task-specific tools