chore: rename project from glossa to lila

- Update all package names from @glossa/* to @lila/*
- Update all imports, container names, volume names
- Update documentation references
- Recreate database with new credentials
This commit is contained in:
lila 2026-04-13 10:00:52 +02:00
parent 1699f78f0b
commit 3f7bc4111e
37 changed files with 116 additions and 182 deletions

View file

@ -4,7 +4,7 @@ This directory contains the source data files and extraction/merge pipeline for
## Overview
The pipeline transforms raw vocabulary data from multiple sources into a standardized format, resolves conflicts between sources, and produces an authoritative CEFR dataset per language. This dataset is then used by the Glossa database package to update translation records.
The pipeline transforms raw vocabulary data from multiple sources into a standardized format, resolves conflicts between sources, and produces an authoritative CEFR dataset per language. This dataset is then used by the lila database package to update translation records.
## Supported Languages
@ -195,7 +195,7 @@ To add a new source:
## Constants and Constraints
The pipeline respects these constraints from the Glossa shared constants:
The pipeline respects these constraints from the lila shared constants:
- **Supported languages:** en, it
- **Supported parts of speech:** noun, verb

View file

@ -18,7 +18,7 @@ import csv
import json
from pathlib import Path
# Constants matching @glossa/shared
# Constants matching @lila/shared
SUPPORTED_POS = ["noun", "verb"]
CEFR_LEVELS = ["A1", "A2", "B1", "B2", "C1", "C2"]

View file

@ -10,7 +10,7 @@ from pathlib import Path
import xlrd
# Constants matching @glossa/shared
# Constants matching @lila/shared
SUPPORTED_POS = ["noun", "verb"]
CEFR_LEVELS = ["A1", "A2", "B1", "B2", "C1", "C2"]

View file

@ -15,7 +15,7 @@ import csv
import json
from pathlib import Path
# Constants matching @glossa/shared
# Constants matching @lila/shared
SUPPORTED_POS = ["noun", "verb"]
CEFR_LEVELS = ["A1", "A2", "B1", "B2", "C1", "C2"]

View file

@ -17,7 +17,7 @@ Output format (normalized):
import json
from pathlib import Path
# Constants matching @glossa/shared
# Constants matching @lila/shared
SUPPORTED_POS = ["noun", "verb"]
CEFR_LEVELS = ["A1", "A2", "B1", "B2", "C1", "C2"]