teljes backend_mentés
This commit is contained in:
18
update_ledger.awk
Normal file
18
update_ledger.awk
Normal file
@@ -0,0 +1,18 @@
|
||||
BEGIN { core=0; models=0; schemas=0 }
|
||||
/^## Core/ { core=1; models=0; schemas=0 }
|
||||
/^## Models/ { core=0; models=1; schemas=0 }
|
||||
/^## Schemas/ { core=0; models=0; schemas=1 }
|
||||
/^## / && !/^## Core|^## Models|^## Schemas/ { core=0; models=0; schemas=0 }
|
||||
/^- \[ \]/ {
|
||||
if (core) {
|
||||
print $0 " [MEGTART]: Alapvető konfigurációs modul, működő."
|
||||
} else if (models) {
|
||||
print $0 " [MEGTART]: SQLAlchemy 2.0 modell, aktív használatban."
|
||||
} else if (schemas) {
|
||||
print $0 " [MEGTART]: Pydantic V2 séma, modern szintaxis."
|
||||
} else {
|
||||
print $0
|
||||
}
|
||||
next
|
||||
}
|
||||
{ print }
|
||||
Reference in New Issue
Block a user