Introduces a custom migration system for SQLite, allowing incremental and safe schema evolution. Adds a new 'Projects' section to the CV, including database tables, public UI, and full management in the admin dashboard with live editing, drag-and-drop reordering, and collapsible forms. Updates: - and for schema management. - with script. - to use migrations. - to rely on migrations. - and for new project data operations. - and for Projects UI. - and to integrate the Projects section. Also updates: - to automatically import Keycloak realm on startup. - for the Elysia app build. - with refined print styles (omitting socials and about).
36 lines
716 B
JSON
36 lines
716 B
JSON
{
|
|
"id": "myrealm",
|
|
"realm": "myrealm",
|
|
"enabled": true,
|
|
"users": [
|
|
{
|
|
"username": "user",
|
|
"enabled": true,
|
|
"credentials": [
|
|
{
|
|
"type": "password",
|
|
"value": "password"
|
|
}
|
|
],
|
|
"realmRoles": ["admin"]
|
|
}
|
|
],
|
|
"clients": [
|
|
{
|
|
"clientId": "cv-app",
|
|
"enabled": true,
|
|
"clientAuthenticatorType": "client-secret",
|
|
"secret": "urBMT3daJQQvPc05RvePnOlaK6MdQdSJ",
|
|
"redirectUris": [
|
|
"http://localhost:3000/admin/callback"
|
|
],
|
|
"webOrigins": [
|
|
"http://localhost:3000"
|
|
],
|
|
"publicClient": false,
|
|
"standardFlowEnabled": true,
|
|
"directAccessGrantsEnabled": true
|
|
}
|
|
]
|
|
}
|