Initial vault setup
This commit is contained in:
+16
@@ -0,0 +1,16 @@
|
||||
# Tolaria app files (machine-specific, never commit)
|
||||
.laputa/settings.json
|
||||
|
||||
# macOS
|
||||
.DS_Store
|
||||
.AppleDouble
|
||||
.LSOverride
|
||||
|
||||
# Thumbnails
|
||||
._*
|
||||
|
||||
# Editors
|
||||
.vscode/
|
||||
.idea/
|
||||
*.swp
|
||||
*.swo
|
||||
Binary file not shown.
Binary file not shown.
Vendored
+3
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"promptDelete": false
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"cssTheme": "Dracula for Obsidian",
|
||||
"theme": "system",
|
||||
"enabledCssSnippets": [
|
||||
"wiki-theme"
|
||||
]
|
||||
}
|
||||
Vendored
+7
@@ -0,0 +1,7 @@
|
||||
[
|
||||
"dataview",
|
||||
"knowledge-graph-analysis",
|
||||
"tag-wrangler",
|
||||
"make-md",
|
||||
"smart-connections"
|
||||
]
|
||||
Vendored
+33
@@ -0,0 +1,33 @@
|
||||
{
|
||||
"file-explorer": true,
|
||||
"global-search": true,
|
||||
"switcher": true,
|
||||
"graph": true,
|
||||
"backlink": true,
|
||||
"canvas": true,
|
||||
"outgoing-link": true,
|
||||
"tag-pane": true,
|
||||
"footnotes": false,
|
||||
"properties": true,
|
||||
"page-preview": true,
|
||||
"daily-notes": true,
|
||||
"templates": true,
|
||||
"note-composer": true,
|
||||
"command-palette": true,
|
||||
"slash-command": false,
|
||||
"editor-status": true,
|
||||
"bookmarks": true,
|
||||
"markdown-importer": false,
|
||||
"zk-prefixer": false,
|
||||
"random-note": false,
|
||||
"outline": true,
|
||||
"word-count": true,
|
||||
"slides": false,
|
||||
"audio-recorder": false,
|
||||
"workspaces": false,
|
||||
"file-recovery": true,
|
||||
"publish": false,
|
||||
"sync": true,
|
||||
"bases": true,
|
||||
"webviewer": false
|
||||
}
|
||||
Vendored
+22
@@ -0,0 +1,22 @@
|
||||
{
|
||||
"collapse-filter": true,
|
||||
"search": "",
|
||||
"showTags": false,
|
||||
"showAttachments": false,
|
||||
"hideUnresolved": false,
|
||||
"showOrphans": true,
|
||||
"collapse-color-groups": true,
|
||||
"colorGroups": [],
|
||||
"collapse-display": true,
|
||||
"showArrow": false,
|
||||
"textFadeMultiplier": 0,
|
||||
"nodeSizeMultiplier": 1,
|
||||
"lineSizeMultiplier": 1,
|
||||
"collapse-forces": true,
|
||||
"centerStrength": 0.518713248970312,
|
||||
"repelStrength": 10,
|
||||
"linkStrength": 1,
|
||||
"linkDistance": 250,
|
||||
"scale": 1.4019828977760986,
|
||||
"close": false
|
||||
}
|
||||
Vendored
+1
@@ -0,0 +1 @@
|
||||
{}
|
||||
Vendored
+20876
File diff suppressed because one or more lines are too long
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "dataview",
|
||||
"name": "Dataview",
|
||||
"version": "0.5.68",
|
||||
"minAppVersion": "0.13.11",
|
||||
"description": "Complex data views for the data-obsessed.",
|
||||
"author": "Michael Brenan <blacksmithgu@gmail.com>",
|
||||
"authorUrl": "https://github.com/blacksmithgu",
|
||||
"helpUrl": "https://blacksmithgu.github.io/obsidian-dataview/",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
+141
@@ -0,0 +1,141 @@
|
||||
.block-language-dataview {
|
||||
overflow-y: auto;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Table Views **/
|
||||
/*****************/
|
||||
|
||||
/* List View Default Styling; rendered internally as a table. */
|
||||
.table-view-table {
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr, .table-view-table > tbody > tr {
|
||||
margin-top: 1em;
|
||||
margin-bottom: 1em;
|
||||
text-align: left;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr:hover {
|
||||
background-color: var(--table-row-background-hover);
|
||||
}
|
||||
|
||||
.table-view-table > thead > tr > th {
|
||||
font-weight: 700;
|
||||
font-size: larger;
|
||||
border-top: none;
|
||||
border-left: none;
|
||||
border-right: none;
|
||||
border-bottom: solid;
|
||||
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table > tbody > tr > td {
|
||||
text-align: left;
|
||||
border: none;
|
||||
font-weight: 400;
|
||||
max-width: 100%;
|
||||
}
|
||||
|
||||
.table-view-table ul, .table-view-table ol {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Rendered value styling for any view. */
|
||||
.dataview-result-list-root-ul {
|
||||
padding: 0em !important;
|
||||
margin: 0em !important;
|
||||
}
|
||||
|
||||
.dataview-result-list-ul {
|
||||
margin-block-start: 0.2em !important;
|
||||
margin-block-end: 0.2em !important;
|
||||
}
|
||||
|
||||
/** Generic grouping styling. */
|
||||
.dataview.result-group {
|
||||
padding-left: 8px;
|
||||
}
|
||||
|
||||
/*******************/
|
||||
/** Inline Fields **/
|
||||
/*******************/
|
||||
|
||||
.dataview.inline-field-key {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
.dataview.inline-field-standalone-value {
|
||||
padding-left: 8px;
|
||||
padding-right: 8px;
|
||||
font-family: var(--font-monospace);
|
||||
background-color: var(--background-secondary-alt);
|
||||
color: var(--nav-item-color-selected);
|
||||
}
|
||||
|
||||
/***************/
|
||||
/** Task View **/
|
||||
/***************/
|
||||
|
||||
.dataview.task-list-item, .dataview.task-list-basic-item {
|
||||
margin-top: 3px;
|
||||
margin-bottom: 3px;
|
||||
transition: 0.4s;
|
||||
}
|
||||
|
||||
.dataview.task-list-item:hover, .dataview.task-list-basic-item:hover {
|
||||
background-color: var(--text-selection);
|
||||
box-shadow: -40px 0 0 var(--text-selection);
|
||||
cursor: pointer;
|
||||
}
|
||||
|
||||
/*****************/
|
||||
/** Error Views **/
|
||||
/*****************/
|
||||
|
||||
div.dataview-error-box {
|
||||
width: 100%;
|
||||
min-height: 150px;
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: center;
|
||||
border: 4px dashed var(--background-secondary);
|
||||
}
|
||||
|
||||
.dataview-error-message {
|
||||
color: var(--text-muted);
|
||||
text-align: center;
|
||||
}
|
||||
|
||||
/*************************/
|
||||
/** Additional Metadata **/
|
||||
/*************************/
|
||||
|
||||
.dataview.small-text {
|
||||
font-size: smaller;
|
||||
color: var(--text-muted);
|
||||
margin-left: 3px;
|
||||
}
|
||||
|
||||
.dataview.small-text::before {
|
||||
content: "(";
|
||||
}
|
||||
|
||||
.dataview.small-text::after {
|
||||
content: ")";
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
{
|
||||
"wasmHash": "-47eacbcf"
|
||||
}
|
||||
+21165
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "knowledge-graph-analysis",
|
||||
"name": "Knowledge Graph Analysis",
|
||||
"version": "0.6.6",
|
||||
"minAppVersion": "1.7.2",
|
||||
"description": "Analyze your vault with graph algorithms and optional AI insights.",
|
||||
"author": "wluo",
|
||||
"authorUrl": "https://github.com/luolanaaTUD",
|
||||
"isDesktopOnly": true
|
||||
}
|
||||
+3386
File diff suppressed because it is too large
Load Diff
Vendored
+112
@@ -0,0 +1,112 @@
|
||||
{
|
||||
"newNotePlaceholder": "Untitled",
|
||||
"defaultInitialization": false,
|
||||
"navigatorEnabled": true,
|
||||
"filePreviewOnHover": false,
|
||||
"blinkEnabled": true,
|
||||
"datePickerTime": false,
|
||||
"imageThumbnails": false,
|
||||
"noteThumbnails": false,
|
||||
"spacesMDBInHidden": true,
|
||||
"cacheIndex": true,
|
||||
"spacesRightSplit": false,
|
||||
"contextEnabled": true,
|
||||
"spaceViewEnabled": true,
|
||||
"saveAllContextToFrontmatter": true,
|
||||
"autoOpenFileContext": false,
|
||||
"activeView": "/",
|
||||
"hideFrontmatter": true,
|
||||
"activeSpace": "",
|
||||
"defaultDateFormat": "MMM dd yyyy",
|
||||
"defaultTimeFormat": "h:mm a",
|
||||
"spacesEnabled": true,
|
||||
"syncFormulaToFrontmatter": true,
|
||||
"spacesPerformance": false,
|
||||
"currentWaypoint": 0,
|
||||
"enableFolderNote": true,
|
||||
"folderIndentationLines": true,
|
||||
"revealActiveFile": false,
|
||||
"spacesStickers": true,
|
||||
"spaceRowHeight": 29,
|
||||
"mobileSpaceRowHeight": 40,
|
||||
"bannerHeight": 200,
|
||||
"spacesDisablePatch": false,
|
||||
"folderNoteInsideFolder": true,
|
||||
"folderNoteName": "",
|
||||
"sidebarTabs": true,
|
||||
"showRibbon": true,
|
||||
"vaultSelector": true,
|
||||
"deleteFileOption": "trash",
|
||||
"expandedSpaces": [
|
||||
"/",
|
||||
"//Catalogue-Self-Hosted",
|
||||
"//Catalogue-Self-Hosted/Catalogue-Self-Hosted/categories"
|
||||
],
|
||||
"expandFolderOnClick": true,
|
||||
"spacesFolder": "Tags",
|
||||
"suppressedWarnings": [],
|
||||
"spaceSubFolder": ".space",
|
||||
"hiddenFiles": [],
|
||||
"hiddenExtensions": [
|
||||
".mdb",
|
||||
"_assets",
|
||||
"_blocks"
|
||||
],
|
||||
"inlineBacklinks": false,
|
||||
"inlineContext": true,
|
||||
"inlineBacklinksExpanded": false,
|
||||
"inlineContextExpanded": true,
|
||||
"inlineContextProperties": true,
|
||||
"inlineContextSectionsExpanded": true,
|
||||
"banners": true,
|
||||
"inlineContextNameLayout": "vertical",
|
||||
"spacesUseAlias": false,
|
||||
"fmKeyAlias": "aliases",
|
||||
"fmKeyBanner": "banner",
|
||||
"fmKeyColor": "color",
|
||||
"fmKeyBannerOffset": "banner_y",
|
||||
"fmKeySticker": "sticker",
|
||||
"openSpacesOnLaunch": true,
|
||||
"indexSVG": false,
|
||||
"readableLineWidth": true,
|
||||
"autoAddContextsToSubtags": true,
|
||||
"releaseNotesPrompt": 0.999,
|
||||
"enableDefaultSpaces": true,
|
||||
"showSpacePinIcon": true,
|
||||
"experimental": false,
|
||||
"systemName": "WIKI",
|
||||
"defaultSpaceTemplate": "",
|
||||
"selectedKit": "default",
|
||||
"actionMaxSteps": 100,
|
||||
"contextPagination": 25,
|
||||
"skipFolders": [],
|
||||
"skipFolderNames": [],
|
||||
"enhancedLogs": false,
|
||||
"basics": true,
|
||||
"basicsSettings": {
|
||||
"flowMenuEnabled": true,
|
||||
"markSans": false,
|
||||
"makeMenuPlaceholder": true,
|
||||
"mobileMakeBar": false,
|
||||
"mobileSidepanel": false,
|
||||
"inlineStyler": true,
|
||||
"inlineStylerColors": false,
|
||||
"inlineStylerSelectedPalette": "",
|
||||
"editorFlow": true,
|
||||
"internalLinkClickFlow": false,
|
||||
"internalLinkSticker": false,
|
||||
"editorFlowStyle": "minimal",
|
||||
"menuTriggerChar": "/",
|
||||
"inlineStickerMenu": true,
|
||||
"emojiTriggerChar": ":",
|
||||
"flowState": false
|
||||
},
|
||||
"firstLaunch": true,
|
||||
"notesPreview": false,
|
||||
"editStickerInSidebar": true,
|
||||
"overrideNativeMenu": false,
|
||||
"onboardingCompleted": false,
|
||||
"contextCreateUseModal": false,
|
||||
"homepagePath": "",
|
||||
"mobileMakeHeader": false
|
||||
}
|
||||
Vendored
+1205
File diff suppressed because one or more lines are too long
+10
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "make-md",
|
||||
"name": "make.md",
|
||||
"version": "1.3.4",
|
||||
"minAppVersion": "0.16.0",
|
||||
"description": "make.md gives you everything you need to organize and personalize your notes.",
|
||||
"author": "make.md",
|
||||
"authorUrl": "https://www.make.md",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
Vendored
+1
File diff suppressed because one or more lines are too long
@@ -0,0 +1,4 @@
|
||||
{
|
||||
"installed_at": 1780763182245,
|
||||
"last_version": "4.5.3"
|
||||
}
|
||||
+30536
File diff suppressed because one or more lines are too long
@@ -0,0 +1,10 @@
|
||||
{
|
||||
"id": "smart-connections",
|
||||
"name": "Smart Connections",
|
||||
"author": "Brian Petro",
|
||||
"description": "AI link discovery copilot. See related notes as you write. Lookup using semantic (vector) search across your vault. Zero-setup local model for embeddings, no API keys, private.",
|
||||
"minAppVersion": "1.1.0",
|
||||
"authorUrl": "https://smartconnections.app",
|
||||
"isDesktopOnly": false,
|
||||
"version": "4.5.3"
|
||||
}
|
||||
+645
@@ -0,0 +1,645 @@
|
||||
/* deprecated positioning, use bottom bar instead */
|
||||
.view-content > .sc-brand {
|
||||
position: fixed;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
background-color: var(--titlebar-background);
|
||||
}
|
||||
|
||||
.sc-brand {
|
||||
> svg,
|
||||
> p {
|
||||
display: inline;
|
||||
margin: 0 0.1rem 0 0.3rem;
|
||||
color: var(--text-muted);
|
||||
font-size: var(--font-smallest);
|
||||
line-height: 1;
|
||||
height: 0.88rem;
|
||||
width: auto;
|
||||
}
|
||||
|
||||
> p > a {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
}
|
||||
|
||||
.sc-list {
|
||||
padding-bottom: 20px;
|
||||
|
||||
.tree-item-self {
|
||||
cursor: pointer;
|
||||
|
||||
small {
|
||||
color: var(--color-gray-40);
|
||||
}
|
||||
}
|
||||
|
||||
> .sc-collapsed ul {
|
||||
display: none;
|
||||
}
|
||||
|
||||
> .sc-collapsed span svg {
|
||||
transform: rotate(-90deg);
|
||||
}
|
||||
|
||||
> :not(.sc-collapsed) span svg {
|
||||
transform: rotate(0deg);
|
||||
}
|
||||
|
||||
> div {
|
||||
span svg {
|
||||
height: auto;
|
||||
margin: auto 0.5em auto 0;
|
||||
flex: none;
|
||||
}
|
||||
|
||||
> span {
|
||||
display: inline-flex;
|
||||
width: 100%;
|
||||
padding-left: 0;
|
||||
}
|
||||
|
||||
ul {
|
||||
margin: 0;
|
||||
padding-left: 1.3rem;
|
||||
}
|
||||
|
||||
> a {
|
||||
display: block;
|
||||
}
|
||||
|
||||
> ul > li {
|
||||
display: block;
|
||||
}
|
||||
}
|
||||
.sc-result {
|
||||
> ul {
|
||||
list-style: none;
|
||||
padding-left: 0;
|
||||
}
|
||||
}
|
||||
|
||||
.sc-result.sc-result-plaintext {
|
||||
font-size: var(--font-ui-smaller);
|
||||
line-height: var(--line-height-tight);
|
||||
background-color: var(--search-result-background);
|
||||
border-radius: var(--radius-s);
|
||||
overflow: hidden;
|
||||
margin: var(--size-4-1) 0 var(--size-4-2);
|
||||
color: var(--text-muted);
|
||||
box-shadow: 0 0 0 1px var(--background-modifier-border);
|
||||
|
||||
& > * li {
|
||||
cursor: var(--cursor);
|
||||
position: relative;
|
||||
padding: var(--size-4-2) var(--size-4-5) var(--size-4-2) var(--size-4-3);
|
||||
white-space: pre-wrap;
|
||||
width: 100%;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
}
|
||||
|
||||
.sc-result:not(.sc-result-plaintext) {
|
||||
cursor: pointer;
|
||||
padding: var(--nav-item-padding);
|
||||
padding-left: 0;
|
||||
margin-bottom: 1px;
|
||||
align-items: baseline;
|
||||
border-radius: var(--radius-s);
|
||||
font-weight: var(--nav-item-weight);
|
||||
|
||||
&:hover {
|
||||
color: var(--nav-item-color-active);
|
||||
background-color: var(--nav-item-background-active);
|
||||
font-weight: var(--nav-item-weight-active);
|
||||
}
|
||||
|
||||
span {
|
||||
color: var(--h5-color);
|
||||
}
|
||||
|
||||
small {
|
||||
color: var(--h5-color);
|
||||
font-size: 0.8rem;
|
||||
}
|
||||
|
||||
p {
|
||||
margin-top: 0.3rem;
|
||||
margin-bottom: 0.3rem;
|
||||
}
|
||||
|
||||
ul > li {
|
||||
h1 {
|
||||
font-size: 1.3rem;
|
||||
}
|
||||
|
||||
h2 {
|
||||
font-size: 1.25rem;
|
||||
}
|
||||
|
||||
h3 {
|
||||
font-size: 1.2rem;
|
||||
}
|
||||
|
||||
h4 {
|
||||
font-size: 1.15rem;
|
||||
}
|
||||
|
||||
h5 {
|
||||
font-size: 1.1rem;
|
||||
}
|
||||
|
||||
h6 {
|
||||
font-size: 1.05rem;
|
||||
}
|
||||
|
||||
h1,
|
||||
h2,
|
||||
h3,
|
||||
h4,
|
||||
h5,
|
||||
h6 {
|
||||
margin-block-start: calc(var(--p-spacing)/2);
|
||||
margin-block-end: calc(var(--p-spacing)/2);
|
||||
}
|
||||
}
|
||||
}
|
||||
} /* end .sc-list */
|
||||
|
||||
/* Only on right sidebar */
|
||||
.mod-right-split .sc-list .sc-result {
|
||||
font-size: var(--font-smallest);
|
||||
}
|
||||
|
||||
.sc-top-bar {
|
||||
display: flex;
|
||||
width: 100%;
|
||||
justify-content: end;
|
||||
|
||||
.sc-context {
|
||||
color: var(--nav-item-color);
|
||||
font-size: var(--nav-item-size);
|
||||
margin: 0.5em 0.5em 1em;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
/* Chat */
|
||||
.sc-chat-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: center;
|
||||
justify-content: flex-end;
|
||||
height: 100%;
|
||||
|
||||
.sc-top-bar-container {
|
||||
align-self: flex-end;
|
||||
display: flex;
|
||||
width: 100%;
|
||||
|
||||
.sc-chat-name-input {
|
||||
flex-grow: 1;
|
||||
min-width: 20px;
|
||||
}
|
||||
}
|
||||
|
||||
.sc-thread {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
height: 100%;
|
||||
width: 100%;
|
||||
overflow: hidden;
|
||||
user-select: text;
|
||||
overflow-y: auto;
|
||||
|
||||
.sc-message-container {
|
||||
border: 1px solid var(--divider-color);
|
||||
border-radius: 10px;
|
||||
margin: 0.5rem 0;
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
width: 100%;
|
||||
height: 100%;
|
||||
overflow-y: auto;
|
||||
background-color: var(--background-primary-alt);
|
||||
|
||||
.sc-message {
|
||||
max-width: 90ch;
|
||||
width: 90%;
|
||||
margin: 10px;
|
||||
padding: 10px;
|
||||
border-radius: 1.5rem;
|
||||
word-break: break-word;
|
||||
|
||||
&.user {
|
||||
align-self: flex-end;
|
||||
color: var(--text-normal);
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
&.assistant,
|
||||
&.system {
|
||||
background-color: var(--background-primary-alt);
|
||||
color: var(--text-normal);
|
||||
}
|
||||
|
||||
.sc-message-content {
|
||||
margin: 0;
|
||||
padding: 1rem;
|
||||
|
||||
> * p {
|
||||
margin: 0;
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
#settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
}
|
||||
|
||||
.sc-system {
|
||||
align-self: center;
|
||||
font-style: italic;
|
||||
color: var(--text-faint);
|
||||
}
|
||||
|
||||
.sc-msg-button {
|
||||
cursor: pointer;
|
||||
float: right;
|
||||
margin-left: 5px;
|
||||
opacity: 0.8;
|
||||
|
||||
&.cycle-branch {
|
||||
float: left;
|
||||
display: flex;
|
||||
}
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
}
|
||||
|
||||
#sc-abort-button {
|
||||
cursor: pointer;
|
||||
padding: 10px;
|
||||
border-radius: 5px;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
}
|
||||
|
||||
.notice .sc-notice-actions {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
flex-direction: row-reverse;
|
||||
}
|
||||
|
||||
.sc-chat-container {
|
||||
#settings {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
max-width: 100%;
|
||||
width: 100%;
|
||||
}
|
||||
|
||||
.sc-config-error-notice {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
justify-content: space-between;
|
||||
padding: 10px;
|
||||
background-color: #ffcccc;
|
||||
border: 1px solid #ff0000;
|
||||
border-radius: 5px;
|
||||
margin: 10px 0;
|
||||
font-size: 14px;
|
||||
font-weight: bold;
|
||||
color: #ff0000;
|
||||
width: 100%;
|
||||
|
||||
span {
|
||||
flex-grow: 1;
|
||||
}
|
||||
|
||||
button {
|
||||
margin-left: 10px;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sc-bottom-bar {
|
||||
position: absolute;
|
||||
bottom: 0;
|
||||
right: 0;
|
||||
left: 0;
|
||||
width: 100%;
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
background-color: var(--titlebar-background);
|
||||
padding: 0 0.5rem;
|
||||
|
||||
.sc-brand {
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.sc-context {
|
||||
flex-grow: 1;
|
||||
font-size: var(--font-smallest);
|
||||
overflow: hidden;
|
||||
text-overflow: ellipsis;
|
||||
white-space: nowrap;
|
||||
}
|
||||
}
|
||||
|
||||
.setting-component[data-setting*="/"][data-setting*="api_key"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.setting-component[data-setting*="gpu"]:not([data-setting*="/"]) {
|
||||
display: none;
|
||||
}
|
||||
|
||||
/* SINCE COMPONENT PATTERN SETTINGS */
|
||||
|
||||
.setting-component[data-setting="smart_change.active"] {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.group-header {
|
||||
display: flex;
|
||||
text-wrap: nowrap;
|
||||
flex-wrap: wrap;
|
||||
align-items: baseline;
|
||||
|
||||
> h2 {
|
||||
width: 100%;
|
||||
margin-bottom: 0;
|
||||
}
|
||||
|
||||
> * {
|
||||
flex-grow: 1;
|
||||
margin-bottom: 10px;
|
||||
}
|
||||
}
|
||||
|
||||
/* SMART CHAT v2 */
|
||||
.sc-context-list {
|
||||
list-style: none;
|
||||
margin: 0;
|
||||
padding: 0 1rem 1rem;
|
||||
display: none;
|
||||
flex-direction: column;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.sc-context-header[aria-expanded="true"] + .sc-context-list {
|
||||
display: flex;
|
||||
}
|
||||
|
||||
.sc-context-header[aria-expanded="false"] + .sc-context-list {
|
||||
display: none;
|
||||
}
|
||||
|
||||
.sc-context-toggle-icon {
|
||||
margin-left: 0.5rem;
|
||||
transition: transform 0.3s ease;
|
||||
}
|
||||
|
||||
.sc-context-header[aria-expanded="true"] .sc-context-toggle-icon {
|
||||
transform: rotate(180deg);
|
||||
}
|
||||
|
||||
.sc-context-item {
|
||||
padding: 0.5rem;
|
||||
border-radius: var(--radius-s);
|
||||
background-color: var(--background-secondary);
|
||||
color: var(--text-normal);
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: baseline;
|
||||
font-size: var(--font-smallest);
|
||||
flex-wrap: wrap;
|
||||
|
||||
&:hover {
|
||||
background-color: var(--background-secondary-hover);
|
||||
}
|
||||
}
|
||||
|
||||
.sc-context-item-path {
|
||||
font-weight: var(--font-medium);
|
||||
text-overflow: ellipsis;
|
||||
overflow: hidden;
|
||||
white-space: nowrap;
|
||||
max-width: 70%;
|
||||
}
|
||||
|
||||
.sc-context-item-score {
|
||||
font-size: var(--font-small);
|
||||
color: var(--color-gray-40);
|
||||
}
|
||||
|
||||
/* System Message Styles */
|
||||
.sc-system-message-container {
|
||||
margin: 1rem 0;
|
||||
border: 1px solid var(--background-modifier-border);
|
||||
border-radius: 6px;
|
||||
background: var(--background-secondary);
|
||||
flex-shrink: 0;
|
||||
}
|
||||
|
||||
.sc-system-message-header {
|
||||
display: flex;
|
||||
justify-content: space-between;
|
||||
align-items: center;
|
||||
padding: 0.75rem 1rem;
|
||||
cursor: pointer;
|
||||
font-weight: 500;
|
||||
border-bottom: 1px solid transparent;
|
||||
transition: background-color 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
background: var(--background-modifier-hover);
|
||||
}
|
||||
|
||||
span {
|
||||
display: flex;
|
||||
align-items: center;
|
||||
gap: 0.5rem;
|
||||
}
|
||||
|
||||
.sc-system-message-toggle-icon {
|
||||
transition: transform 0.2s ease;
|
||||
}
|
||||
|
||||
&[aria-expanded="true"] {
|
||||
border-bottom-color: var(--background-modifier-border);
|
||||
}
|
||||
}
|
||||
|
||||
.sc-system-message-content {
|
||||
padding: 1rem;
|
||||
position: relative;
|
||||
background: var(--background-primary);
|
||||
border-bottom-left-radius: 6px;
|
||||
border-bottom-right-radius: 6px;
|
||||
|
||||
.sc-system-message-text {
|
||||
font-family: var(--font-monospace);
|
||||
white-space: pre-wrap;
|
||||
word-break: break-word;
|
||||
margin-right: 2rem;
|
||||
}
|
||||
|
||||
.sc-system-message-copy {
|
||||
position: absolute;
|
||||
top: 1rem;
|
||||
right: 1rem;
|
||||
padding: 0.4rem;
|
||||
background: transparent;
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
opacity: 0.6;
|
||||
transition: opacity 0.2s ease;
|
||||
|
||||
&:hover {
|
||||
opacity: 1;
|
||||
}
|
||||
|
||||
&.sc-copied {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
.sc-chat-container {
|
||||
.smart-chat-overlay {
|
||||
position: absolute;
|
||||
top: 0;
|
||||
left: 0;
|
||||
right: 0;
|
||||
bottom: 0;
|
||||
background-color: var(--background-primary-alt);
|
||||
z-index: 100;
|
||||
overflow: auto;
|
||||
|
||||
.smart-chat-overlay-header {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
}
|
||||
.setting-item {
|
||||
flex-direction: column;
|
||||
align-items: flex-start;
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
/* keyframes must be at root level */
|
||||
@keyframes typing-bounce {
|
||||
0%,
|
||||
80%,
|
||||
100% {
|
||||
transform: scale(0.6);
|
||||
}
|
||||
40% {
|
||||
transform: scale(1);
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Side Panes */
|
||||
div.workspace-leaf-content[data-type^="smart-"] {
|
||||
> .view-content {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
}
|
||||
}
|
||||
|
||||
.sc-inline-confirm-row {
|
||||
margin-top: 10px;
|
||||
padding: 6px;
|
||||
border: 1px solid var(--interactive-normal);
|
||||
}
|
||||
.sc-inline-confirm-row-buttons {
|
||||
display: flex;
|
||||
justify-content: flex-end;
|
||||
gap: 10px;
|
||||
margin-top: 10px;
|
||||
|
||||
& .sc-inline-confirm-yes {
|
||||
font-weight: bold;
|
||||
}
|
||||
& .sc-inline-confirm-cancel {
|
||||
font-weight: normal;
|
||||
}
|
||||
}
|
||||
|
||||
.sc-story-container {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
height: 100%;
|
||||
}
|
||||
|
||||
.sc-other-plugins {
|
||||
display: flex;
|
||||
flex-direction: column;
|
||||
gap: 10px;
|
||||
margin-top: 20px;
|
||||
|
||||
button {
|
||||
padding: 10px;
|
||||
border-radius: var(--radius-s);
|
||||
background-color: var(--background-primary);
|
||||
color: var(--text-normal);
|
||||
border: none;
|
||||
cursor: pointer;
|
||||
font-size: var(--font-small);
|
||||
|
||||
&:hover {
|
||||
background-color: var(--background-primary-hover);
|
||||
}
|
||||
}
|
||||
}
|
||||
|
||||
|
||||
/* Connections results (redundant with v3.css inc components, should be safe to remove) */
|
||||
.sc-result a.sc-result-file-title {
|
||||
text-decoration: none;
|
||||
}
|
||||
|
||||
.sc-result a.sc-result-file-title > small.sc-score {
|
||||
display: inline-block;
|
||||
width: auto;
|
||||
height: 1.7em;
|
||||
padding: 0 0.3em;
|
||||
line-height: 1.7em;
|
||||
text-align: center;
|
||||
font-weight: 600;
|
||||
font-size: var(--font-smallest);
|
||||
color: var(--nav-item-color);
|
||||
background: var(--background-modifier-hover);
|
||||
border-radius: 6px;
|
||||
margin-right: 0.2em;
|
||||
}
|
||||
|
||||
a.sc-result-file-title > small.sc-title {
|
||||
font-weight: 500;
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
|
||||
a.sc-result-file-title > .sc-breadcrumb:not(.sc-path, .sc-title, .sc-score) {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
a.sc-result-file-title > small.sc-breadcrumb-separator {
|
||||
color: color-mix(in srgb, var(--text-normal) 50%, transparent);
|
||||
}
|
||||
+1
@@ -0,0 +1 @@
|
||||
{}
|
||||
+165
File diff suppressed because one or more lines are too long
+11
@@ -0,0 +1,11 @@
|
||||
{
|
||||
"id": "tag-wrangler",
|
||||
"name": "Tag Wrangler",
|
||||
"author": "PJ Eby",
|
||||
"authorUrl": "https://github.com/pjeby",
|
||||
"version": "0.6.4",
|
||||
"minAppVersion": "1.5.8",
|
||||
"description": "Rename, merge, toggle, and search tags from the tags view",
|
||||
"fundingUrl": "https://dirtsimple.org/tips/tag-wrangler",
|
||||
"isDesktopOnly": false
|
||||
}
|
||||
Vendored
+118
@@ -0,0 +1,118 @@
|
||||
/* ===================================================================
|
||||
🎨 WIKI THEME - E:/WIKI
|
||||
Palette par thème pour embellir le wiki dans Obsidian
|
||||
À installer dans : .obsidian/snippets/wiki-theme.css
|
||||
Puis activer dans : Paramètres > Apparence > Extraits CSS
|
||||
=================================================================== */
|
||||
|
||||
/* 🎨 Variables globales */
|
||||
.theme-dark {
|
||||
--color-ia: #7dd3fc; /* cyan */
|
||||
--color-security: #fca5a5; /* rouge doux */
|
||||
--color-autohost: #86efac; /* vert */
|
||||
--color-web: #fdba74; /* orange */
|
||||
--color-business: #c4b5fd; /* violet */
|
||||
--color-pratique: #fcd34d; /* jaune */
|
||||
}
|
||||
|
||||
/* Tags colorés (méthode simple, via tags YAML) */
|
||||
.tag[href="#ia"],
|
||||
.tag[href="#IA"] {
|
||||
color: var(--color-ia);
|
||||
background-color: rgba(125, 211, 252, 0.1);
|
||||
}
|
||||
|
||||
.tag[href="#security"],
|
||||
.tag[href="#security"],
|
||||
.tag[href="#Security"] {
|
||||
color: var(--color-security);
|
||||
background-color: rgba(252, 165, 165, 0.1);
|
||||
}
|
||||
|
||||
.tag[href="#auto-hébergement"],
|
||||
.tag[href="#auto-hebergement"] {
|
||||
color: var(--color-autohost);
|
||||
background-color: rgba(134, 239, 172, 0.1);
|
||||
}
|
||||
|
||||
.tag[href="#web"] {
|
||||
color: var(--color-web);
|
||||
background-color: rgba(253, 186, 116, 0.1);
|
||||
}
|
||||
|
||||
/* 🎯 Titres avec couleurs thématiques (basé sur les emojis) */
|
||||
h1 {
|
||||
border-bottom: 3px solid var(--text-accent);
|
||||
padding-bottom: 0.3em;
|
||||
font-weight: 700;
|
||||
}
|
||||
|
||||
/* Liens internes (couleur par défaut accentuée) */
|
||||
.internal-link {
|
||||
color: var(--text-accent);
|
||||
text-decoration: none;
|
||||
background-color: rgba(var(--text-accent-rgb), 0.05);
|
||||
padding: 0 4px;
|
||||
border-radius: 3px;
|
||||
transition: background-color 0.2s;
|
||||
}
|
||||
.internal-link:hover {
|
||||
background-color: rgba(var(--text-accent-rgb), 0.15);
|
||||
text-decoration: underline;
|
||||
}
|
||||
|
||||
/* 📋 Styliser les callouts/checklists */
|
||||
.callout {
|
||||
border-radius: 8px;
|
||||
box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
|
||||
}
|
||||
|
||||
/* 📊 Tableaux comparatifs - style moderne */
|
||||
table {
|
||||
border-collapse: collapse;
|
||||
width: 100%;
|
||||
margin: 1em 0;
|
||||
font-size: 0.95em;
|
||||
}
|
||||
table th {
|
||||
background-color: var(--background-secondary);
|
||||
color: var(--text-accent);
|
||||
padding: 10px;
|
||||
text-align: left;
|
||||
border-bottom: 2px solid var(--text-accent);
|
||||
}
|
||||
table td {
|
||||
padding: 8px 10px;
|
||||
border-bottom: 1px solid var(--background-modifier-border);
|
||||
}
|
||||
table tr:hover {
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* 🎯 Code blocks - lisibilité améliorée */
|
||||
code {
|
||||
background-color: var(--background-secondary);
|
||||
padding: 2px 6px;
|
||||
border-radius: 4px;
|
||||
font-size: 0.9em;
|
||||
}
|
||||
pre code {
|
||||
background-color: var(--background-primary-alt);
|
||||
display: block;
|
||||
padding: 12px;
|
||||
border-radius: 8px;
|
||||
border-left: 3px solid var(--text-accent);
|
||||
}
|
||||
|
||||
/* ✨ Animation douce sur les titres de section */
|
||||
h2, h3, h4 {
|
||||
transition: color 0.2s;
|
||||
}
|
||||
h2:hover, h3:hover, h4:hover {
|
||||
color: var(--text-accent);
|
||||
}
|
||||
|
||||
/* 📜 Section "Liens" stylisée */
|
||||
h2:has(+ ul) {
|
||||
/* les sections de liens */
|
||||
}
|
||||
@@ -0,0 +1,6 @@
|
||||
{
|
||||
"name": "Dracula for Obsidian",
|
||||
"version": "0.0.0",
|
||||
"minAppVersion": "0.16.0",
|
||||
"author": "jarodise"
|
||||
}
|
||||
+719
@@ -0,0 +1,719 @@
|
||||
:root
|
||||
{
|
||||
--font-size-normal: 19px;
|
||||
--font-size-code: 16px;
|
||||
--font-size-side-dock: 16px;
|
||||
--font-size-side-dock-title: 18px;
|
||||
--font-size-status-bar: 16px;
|
||||
--font-size-h1: 24px;
|
||||
--font-size-h2: 23px;
|
||||
--font-size-h3: 22px;
|
||||
--font-size-h4: 21px;
|
||||
--font-size-h5: 20px;
|
||||
--font-size-h6: 19px;
|
||||
--font-family-editor: Avenir, Avenir Next, sans-serif;
|
||||
--font-family-preview: Avenir, Avenir Next, sans-serif;
|
||||
}
|
||||
|
||||
.theme-light,
|
||||
.theme-dark {
|
||||
--background-primary: #282a36;
|
||||
--background-primary-alt: #44475a;
|
||||
--background-secondary: #44475a;
|
||||
--background-secondary-alt: #282a36;
|
||||
--background-accent: #f8f8f2;
|
||||
--background-modifier-border: #f8f8f2;
|
||||
--background-modifier-form-field: rgba(0, 0, 0, 0.2);
|
||||
--background-modifier-form-field-highlighted: rgba(0, 0, 0, 0.5);
|
||||
--background-modifier-box-shadow: rgba(0, 0, 0, 0.3);
|
||||
--background-modifier-success: #50fa7b; /*no sure*/
|
||||
--background-modifier-error: #3d0000; /*no sure*/
|
||||
--background-modifier-error-rgb: 61, 0, 0;
|
||||
--background-modifier-error-hover: #470000;
|
||||
--background-modifier-cover: rgba(0, 0, 0, 0.6);
|
||||
--text-accent: #ffb86c;
|
||||
--text-accent-hover: #8be9fd;
|
||||
--text-normal: #f8f8f2;
|
||||
--text-muted: #f8f8f2;
|
||||
--text-faint: #bd93f9;
|
||||
--text-highlight-bg: #ff5555;
|
||||
--text-error: #ff79c6;
|
||||
--text-error-hover: #ff79c6;
|
||||
--text-selection: #6272a4; /* Chromium precess this color with alpha channel */
|
||||
--text-on-accent: #bd93f9;
|
||||
--interactive-normal: #ffb86c;
|
||||
--interactive-hover: #ff5555;
|
||||
--interactive-accent: #ffb86c;
|
||||
--interactive-accent-rgb: 123, 108, 217;
|
||||
--interactive-accent-hover: #ff5555;
|
||||
--scrollbar-active-thumb-bg: rgba(255, 255, 255, 0.2);
|
||||
--scrollbar-bg: rgba(255, 255, 255, 0.05);
|
||||
--scrollbar-thumb-bg: rgba(255, 255, 255, 0.1);
|
||||
|
||||
--text-title-h1: #ff79c6;
|
||||
--text-title-h2: #bd93f9;
|
||||
--text-title-h3: #ff5555;
|
||||
--text-title-h4: #ffb86c;
|
||||
--text-title-h5: #50fa7b;
|
||||
--text-title-h6: #8be9fd;
|
||||
--inline-code: #bd93f9;
|
||||
--code-block: #8be9fd;
|
||||
--pre-code: #44475a;
|
||||
--blockquote-border: #ffb86c;
|
||||
--vim-cursor: #ff5555;
|
||||
--border-color: #2b2727; /*also like transparent*/
|
||||
}
|
||||
|
||||
/*-------------------------------------*/
|
||||
/* Search the following lines */
|
||||
/* to jump to specific section */
|
||||
/*-------------------------------------*/
|
||||
/* resize-handle and borders */
|
||||
/* tags */
|
||||
/* link */
|
||||
/* Cursor */
|
||||
/* basic format in EDITOR and PREVIEW */
|
||||
/* Headings - EDITOR and PREVIEW */
|
||||
/* Code block in Preview */
|
||||
/* Code block in Editor */
|
||||
/* Brackets */
|
||||
/* Blockquote */
|
||||
/* table */
|
||||
/* Checkbox */
|
||||
/* html in editor */
|
||||
/* popover */
|
||||
/* Side panel */
|
||||
/* internal embedded link in preview */
|
||||
/* graph view */
|
||||
/* settings */
|
||||
/* Hide side bar */
|
||||
/* width of content */
|
||||
/* at a rule line before ul list *
|
||||
/* Hide Scrollbar (recommend for mac) */
|
||||
/*-------------------------------------*/
|
||||
|
||||
/***************************************/
|
||||
/* resize-handle and borders */
|
||||
/***************************************/
|
||||
|
||||
/*vertical resize-handle*/
|
||||
.workspace-split.mod-vertical > * > .workspace-leaf-resize-handle,
|
||||
.workspace-split.mod-left-split > .workspace-leaf-resize-handle,
|
||||
.workspace-split.mod-right-split > .workspace-leaf-resize-handle{
|
||||
width: 1px !important;
|
||||
background-color: var(--border-color);
|
||||
}
|
||||
|
||||
/*horizontal resize-handle*/
|
||||
.workspace-split.mod-horizontal > * > .workspace-leaf-resize-handle{
|
||||
height: 1px !important;
|
||||
background-color: var(--border-color);
|
||||
}
|
||||
|
||||
/*workspace ribbon when collapsed*/
|
||||
.workspace-ribbon.is-collapsed {
|
||||
background-color: var(--background-primary-alt);
|
||||
}
|
||||
|
||||
/*the vertical split*/
|
||||
.workspace-split.mod-root .workspace-split.mod-vertical .workspace-leaf-content,
|
||||
.workspace-split.mod-vertical > .workspace-split,
|
||||
.workspace-split.mod-vertical > .workspace-leaf,
|
||||
.workspace-tabs{
|
||||
padding-right: 0px;
|
||||
}
|
||||
|
||||
/*status-bar*/
|
||||
.status-bar{
|
||||
font-size: var(--font-size-status-bar);
|
||||
background-color: var(--background-secondary-alt);
|
||||
border-top: 0px;
|
||||
}
|
||||
|
||||
.document-search-container{
|
||||
border-top: 0px;
|
||||
border-right: 0px;
|
||||
z-index: inherit;
|
||||
}
|
||||
|
||||
.workspace-ribbon.mod-left.is-collapsed{
|
||||
border-right: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
.workspace-ribbon.mod-right.is-collapsed{
|
||||
border-left: 1px solid var(--border-color);
|
||||
}
|
||||
|
||||
/*************************************/
|
||||
/* tags */
|
||||
/*************************************/
|
||||
|
||||
/* Tag hover in preview */
|
||||
a.tag:hover {
|
||||
color: var(--text-accent) !important;
|
||||
}
|
||||
|
||||
/* Tag Color in editor and preview*/
|
||||
.cm-hashtag, a.tag {
|
||||
color: var(--text-accent-hover) !important;
|
||||
text-decoration: none !important;
|
||||
font-style: normal !important;
|
||||
}
|
||||
|
||||
/*********************************/
|
||||
/* link */
|
||||
/*********************************/
|
||||
|
||||
/* link */
|
||||
a,
|
||||
.internal-link,
|
||||
.cm-hmd-internal-link,
|
||||
.cm-link,
|
||||
.cm-formatting-link,
|
||||
.cm-url {
|
||||
text-decoration: none !important;
|
||||
}
|
||||
|
||||
/* the url string in editor */
|
||||
.cm-s-obsidian span.cm-string{
|
||||
color: var(--text-accent-hover) !important;
|
||||
}
|
||||
|
||||
/* make external links italics to differentiate */
|
||||
a:not(.internal-link) {
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/*footnote*/
|
||||
.cm-s-obsidian pre.HyperMD-footnote span.cm-hmd-footnote,
|
||||
.cm-s-obsidian span.cm-footref {
|
||||
color: var(--text-accent) !important;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Cursor */
|
||||
/***************************************/
|
||||
|
||||
/* Cursor color and opacity */
|
||||
|
||||
.cm-fat-cursor .CodeMirror-cursor, .cm-animate-fat-cursor
|
||||
{
|
||||
width: 0.5em;
|
||||
background: var(--vim-cursor);
|
||||
opacity: 60% !important;
|
||||
}
|
||||
|
||||
/**************************************/
|
||||
/* basic format in EDITOR and PREVIEW */
|
||||
/**************************************/
|
||||
|
||||
/* font for everything outside of editor/preview panes */
|
||||
.app-container {
|
||||
font-family: var(--font-family-preview);
|
||||
}
|
||||
|
||||
/* set the text selection color for preview mode */
|
||||
::selection {
|
||||
background-color: var(--text-selection);
|
||||
}
|
||||
|
||||
/* normal text outside of headings and code of editor */
|
||||
.cm-s-obsidian, .mod-single-child .cm-s-obsidian {
|
||||
font-family: var(--font-family-editor);
|
||||
font-size: var(--font-size-normal);
|
||||
}
|
||||
|
||||
/* normal text outside of headings and code of preview */
|
||||
.markdown-preview-view, .mod-single-child .markdown-preview-view {
|
||||
font-family: var(--font-family-editor);
|
||||
font-size: var(--font-size-normal);
|
||||
padding-top: 0px;
|
||||
padding-left: 2% !important;
|
||||
padding-right: 1% !important;
|
||||
}
|
||||
|
||||
/* bold in preview and editor */
|
||||
strong, .cm-strong {
|
||||
font-weight: 600;
|
||||
color: #50fa7b;
|
||||
}
|
||||
|
||||
/* emphasis in preview and editor */
|
||||
em, .cm-em {
|
||||
color: var(--text-muted);
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* strikethrough in preview and editor */
|
||||
s, .cm-strikethrough {
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
/* list in editor */
|
||||
.cm-s-obsidian span.cm-formatting-list {
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
/* horizontal line in preview */
|
||||
.markdown-preview-view hr {
|
||||
background-color: var(--text-faint) !important;
|
||||
}
|
||||
|
||||
/* embedded images */
|
||||
img:not(.emoji) {
|
||||
display: block;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
/* img hover zoom out img*/
|
||||
img:hover {
|
||||
transform: scale(1.04);
|
||||
transition: transform 0.25s ease-in-out 0s;
|
||||
}
|
||||
|
||||
.community-theme img:hover{
|
||||
transform: none;
|
||||
}
|
||||
|
||||
/*********************************/
|
||||
/* Headings - EDITOR and PREVIEW */
|
||||
/*********************************/
|
||||
|
||||
|
||||
/* headings for editor and preview */
|
||||
.cm-header-1, .markdown-preview-view h1
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h1);
|
||||
color: var(--text-title-h1);
|
||||
}
|
||||
|
||||
.cm-header-2, .markdown-preview-view h2
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h2);
|
||||
color: var(--text-title-h2);
|
||||
}
|
||||
|
||||
.cm-header-3, .markdown-preview-view h3
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h3);
|
||||
color: var(--text-title-h3);
|
||||
}
|
||||
|
||||
.cm-header-4, .markdown-preview-view h4
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h4);
|
||||
color: var(--text-title-h4);
|
||||
}
|
||||
|
||||
.cm-header-5, .markdown-preview-view h5
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h5);
|
||||
color: var(--text-title-h5);
|
||||
}
|
||||
|
||||
.cm-header-6, .markdown-preview-view h6
|
||||
{
|
||||
font-family: var(--font-family-editor);
|
||||
font-weight: 500;
|
||||
font-size: var(--font-size-h6);
|
||||
color: var(--text-title-h6);
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Code block in Preview */
|
||||
/***************************************/
|
||||
|
||||
/* code blocks in preview */
|
||||
pre code {
|
||||
font-family: monaco !important;
|
||||
font-size: var(--font-size-code) !important;
|
||||
padding: 6px !important;
|
||||
line-height: normal;
|
||||
display: block;
|
||||
color: var(--code-block) !important;
|
||||
}
|
||||
|
||||
/* padding of code blocks in preview */
|
||||
.markdown-preview-view pre {
|
||||
padding: 0px !important;
|
||||
}
|
||||
|
||||
/* font-size of in-line block for preview */
|
||||
.markdown-preview-view code
|
||||
{
|
||||
font-size: var(--font-size-code);
|
||||
}
|
||||
|
||||
|
||||
/* remove the shadow that typically affect light mode */
|
||||
.theme-dark code[class*="language-"],
|
||||
.theme-dark pre[class*="language-"],
|
||||
.theme-light code[class*="language-"],
|
||||
.theme-light pre[class*="language-"]
|
||||
{
|
||||
text-shadow: none !important;
|
||||
color: var(--text-faint) !important;
|
||||
background-color: var(--pre-code);
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Brackets */
|
||||
/***************************************/
|
||||
|
||||
.cm-s-obsidian span.cm-formatting-link {
|
||||
color: var(--text-accent) !important;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Blockquote */
|
||||
/***************************************/
|
||||
|
||||
/* for editor */
|
||||
.cm-quote {
|
||||
color: var(--text-normal) !important;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/* for preview */
|
||||
.markdown-preview-view blockquote {
|
||||
background-color: var(--pre-code);
|
||||
border: 0px solid;
|
||||
border-color: var(--blockquote-border) !important;
|
||||
border-left-width: 4px !important;
|
||||
border-radius: 0 8px 8px 0;
|
||||
line-height: 1.5em;
|
||||
margin: 30px 0px;
|
||||
font-style: italic;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* table */
|
||||
/***************************************/
|
||||
|
||||
th {
|
||||
font-weight: 800 !important;
|
||||
}
|
||||
|
||||
.markdown-preview-view th {
|
||||
font-weight: 800;
|
||||
background-color: var(--background-secondary) !important;
|
||||
}
|
||||
|
||||
thead {
|
||||
border-bottom: 3px solid var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.table {
|
||||
padding: 4px;
|
||||
line-height: normal;
|
||||
display: block;
|
||||
border-top-left-radius: 4px;
|
||||
border-top-right-radius: 4px;
|
||||
border-bottom-right-radius: 4px;
|
||||
border-bottom-left-radius: 4px;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Checkbox */
|
||||
/***************************************/
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox:checked::before {
|
||||
content: '✓';
|
||||
position: absolute;
|
||||
color: var(--text-accent);
|
||||
font-size:1em;
|
||||
line-height: 1.25em;
|
||||
width:1.2em;
|
||||
text-align:center;
|
||||
text-shadow: 0 0 0.1em var(--text-accent);
|
||||
}
|
||||
|
||||
.markdown-preview-view .task-list-item-checkbox {
|
||||
-webkit-appearance: none;
|
||||
top: 0.2em !important;
|
||||
right: 4px;
|
||||
box-sizing: border-box;
|
||||
border: 1px solid var(--text-muted);
|
||||
position: relative;
|
||||
width: 1.25em;
|
||||
height: 1.25em;
|
||||
margin: 0;
|
||||
box-shadow: 0 0 0.1em var(--text-muted);
|
||||
}
|
||||
|
||||
.checkbox-container {
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
|
||||
/***************************************/
|
||||
/* popover */
|
||||
/***************************************/
|
||||
|
||||
.popover{
|
||||
border: 1px solid var(--border-color);
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
|
||||
/***************************************/
|
||||
/* Side panel */
|
||||
/***************************************/
|
||||
|
||||
/* search result in backlink or file search */
|
||||
.search-result-file-title {
|
||||
font-size: 15px ;
|
||||
}
|
||||
|
||||
.search-result-file-matches, .search-empty-state {
|
||||
font-size: var(--font-size-side-dock);
|
||||
}
|
||||
|
||||
/*decrease the spacing between result items*/
|
||||
.search-result-file-title,
|
||||
.search-result-file-match {
|
||||
padding: 0px 10px;
|
||||
}
|
||||
|
||||
.nav-file-title, .nav-folder-title {
|
||||
border-bottom-left-radius: 0 !important;
|
||||
border-bottom-right-radius: 0 !important;
|
||||
border-top-left-radius: 0 !important;
|
||||
border-top-right-radius: 0 !important;
|
||||
}
|
||||
|
||||
/*backlink pane*/
|
||||
.workspace-leaf-content[data-type="backlink"] .view-content{
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="tag"] .tag-pane-tag-count,
|
||||
.workspace-leaf-content[data-type="tag"] .tag-pane-tag-text {
|
||||
font-size: var(--font-size-side-dock);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type="backlink"] .search-result-file-matches {
|
||||
font-size: var(--font-size-side-dock);
|
||||
}
|
||||
/***************************************/
|
||||
/* internal embedded link in preview */
|
||||
/***************************************/
|
||||
|
||||
/* Naked Embeds */
|
||||
.markdown-embed-title { display: none; }
|
||||
.markdown-preview-view .markdown-embed-content>:first-child { margin-top: 0; }
|
||||
.markdown-preview-view .markdown-embed-content>:last-child { margin-bottom: 0; }
|
||||
/*remove the following two line, you will get border and scroll*/
|
||||
.markdown-preview-view .markdown-embed { border:none; padding:0; margin:0; }
|
||||
.markdown-preview-view .markdown-embed-content
|
||||
{
|
||||
max-height: unset;
|
||||
background-color: var(--background-secondary);
|
||||
}
|
||||
|
||||
/* the link on the top right corner*/
|
||||
.markdown-embed-link {
|
||||
color: var(--text-faint) !important;
|
||||
}
|
||||
|
||||
.markdown-embed-link:hover {
|
||||
color: var(--text-accent) !important;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* graph view */
|
||||
/***************************************/
|
||||
.graph-view.color-circle,
|
||||
.graph-view.color-fill-highlight,
|
||||
.graph-view.color-line-highlight
|
||||
{
|
||||
color: var(--text-accent) !important;
|
||||
}
|
||||
|
||||
.graph-view.color-text
|
||||
{
|
||||
color: var(--text-normal) !important;
|
||||
}
|
||||
|
||||
.graph-view.color-line {
|
||||
color: #6272a4;
|
||||
}
|
||||
|
||||
.graph-view.color-fill{
|
||||
color: var(--text-muted);
|
||||
}
|
||||
|
||||
.workspace-leaf-content[data-type = "graph"] .view-content{
|
||||
background-color: var(--background-primary);
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* settings */
|
||||
/***************************************/
|
||||
|
||||
.modal.mod-settings button:not(.mod-cta):hover {
|
||||
background-color: var(--interactive-accent-hover);
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* Hide side bar */
|
||||
/***************************************/
|
||||
|
||||
/* DISABLED: Sidebar now always visible
|
||||
.workspace-ribbon:not(:hover) .workspace-ribbon-collapse-btn,
|
||||
.workspace-ribbon:not(:hover) .side-dock-actions,
|
||||
.workspace-ribbon:not(:hover) .side-dock-settings {
|
||||
display:none;
|
||||
transition: all 300ms ease-in-out;}
|
||||
.workspace-ribbon:not(:hover) {
|
||||
width: 0px;
|
||||
transition: all 300ms ease-in-out;}
|
||||
|
||||
.workspace-split.mod-left-split {margin-left: 0px;}
|
||||
.workspace-split.mod-right-split {margin-right: 0px;}
|
||||
*/
|
||||
|
||||
/***************************************/
|
||||
/* width of content */
|
||||
/***************************************/
|
||||
|
||||
.markdown-source-view.is-readable-line-width .CodeMirror {
|
||||
max-width: 900px;
|
||||
margin-left: auto;
|
||||
margin-right: auto;
|
||||
}
|
||||
|
||||
.markdown-preview-view.is-readable-line-width .markdown-preview-section {
|
||||
max-width: 900px;
|
||||
margin-left: 30px;
|
||||
margin-right: 30px;
|
||||
}
|
||||
|
||||
|
||||
/* header */
|
||||
|
||||
.theme-dark .view-header {
|
||||
background-color: var(--background-primary) !important;
|
||||
border-top: 1px solid var(--border-color) !important;
|
||||
border-bottom: 1px solid var(--border-color) !important;
|
||||
}
|
||||
|
||||
.theme-dark .view-header-title-container:after {
|
||||
background: linear-gradient(to bottom, transparent, var(--background-primary)) !important;
|
||||
}
|
||||
|
||||
.theme-dark .workspace-leaf.mod-active .view-header {
|
||||
background-color: var(--background-secondary-alt) !important;
|
||||
border-top: 0px !important;
|
||||
border-bottom: 3px solid var(--interactive-accent) !important;
|
||||
}
|
||||
|
||||
.workspace-leaf.mod-active .view-header-title-container:after {
|
||||
background: linear-gradient(to bottom, transparent, var(--background-secondary-alt)) !important;
|
||||
}
|
||||
|
||||
.workspace-leaf.mod-active .view-header-title,
|
||||
.workspace-leaf.mod-active .view-header-icon
|
||||
{
|
||||
color: var(--background-modifier-border);
|
||||
}
|
||||
|
||||
.view-header-title, .view-header-icon, .view-action{
|
||||
color: var(--text-faint);
|
||||
}
|
||||
.view-header-title
|
||||
{
|
||||
font-size: 20px;
|
||||
}
|
||||
|
||||
/***************************************/
|
||||
/* at a rule line before ul list */
|
||||
/***************************************/
|
||||
|
||||
ul ul { position: relative; }
|
||||
ul ul::before {
|
||||
content:'';
|
||||
border-left: 1px solid var(--border-color);
|
||||
position: absolute;
|
||||
}
|
||||
ul ul::before { left: -1em; top: 0; bottom: 0; }
|
||||
|
||||
/* rule line when there are checkboxes*/
|
||||
ul .task-list-item ul::before {left: 0.15em !important}
|
||||
|
||||
/***************************************/
|
||||
/* Code block in Editor */
|
||||
/***************************************/
|
||||
|
||||
/* in-line block for editor */
|
||||
.cm-s-obsidian span.cm-inline-code,
|
||||
.cm-s-obsidian span.cm-inline-code.cm-hmd-indented-code,
|
||||
.cm-s-obsidian span.cm-inline-code:not(.cm-formatting):not(.cm-hmd-indented-code)
|
||||
{
|
||||
background-color: var(--pre-code-bg);
|
||||
color: var(--inline-code) !important;
|
||||
bottom: 0px !important;
|
||||
}
|
||||
|
||||
/* Editor CodeBlock TEXT Appearance */
|
||||
.cm-s-obsidian pre.HyperMD-codeblock {
|
||||
font-family: monaco !important;
|
||||
font-size: var(--font-size-code) !important;
|
||||
padding: 1px !important;
|
||||
display: block;
|
||||
color: var(--code-block) !important;
|
||||
font-weight: 500;
|
||||
text-indent: 0px !important;
|
||||
}
|
||||
|
||||
/*remove the border of codeblock in editor */
|
||||
.HyperMD-codeblock-bg{
|
||||
border: 0px !important;
|
||||
}
|
||||
|
||||
/*an active line highlight in vim normal mode
|
||||
.cm-fat-cursor .CodeMirror-activeline .CodeMirror-linebackground{
|
||||
background-color: var(--text-selection) !important;
|
||||
} */
|
||||
|
||||
/* in-line block for preview */
|
||||
code{
|
||||
color: var(--inline-code) !important;
|
||||
bottom: 0px !important;
|
||||
}
|
||||
|
||||
/* graph css */
|
||||
.theme-dark .graph-view.color-arrow {
|
||||
color: #50fa7b;
|
||||
}
|
||||
|
||||
.theme-dark .graph-view.color-fill-tag {
|
||||
color: #ffb86c;
|
||||
}
|
||||
|
||||
.theme-dark .graph-view.color-fill-attachment {
|
||||
color: #ff5555;
|
||||
}
|
||||
|
||||
.theme-dark .graph-view.color-fill-unresolved {
|
||||
color: #6272a4;
|
||||
}
|
||||
|
||||
.search-result-collapse-indicator {
|
||||
position: absolute;
|
||||
left: 0;
|
||||
top: -3px;
|
||||
color: var(--text-faint);
|
||||
transition: transform 100ms ease-in-out;
|
||||
padding: 0px !important;
|
||||
}
|
||||
+8
@@ -0,0 +1,8 @@
|
||||
{
|
||||
"name": "Minimal",
|
||||
"version": "8.2.1",
|
||||
"minAppVersion": "1.9.0",
|
||||
"author": "@kepano",
|
||||
"authorUrl": "https://twitter.com/kepano",
|
||||
"fundingUrl": "https://www.buymeacoffee.com/kepano"
|
||||
}
|
||||
Vendored
+8793
File diff suppressed because it is too large
Load Diff
+7
@@ -0,0 +1,7 @@
|
||||
{
|
||||
"name": "Things",
|
||||
"version": "2.2.3",
|
||||
"minAppVersion": "1.0.0",
|
||||
"author": "@colineckert",
|
||||
"authorUrl": "https://twitter.com/colineckert"
|
||||
}
|
||||
Vendored
+1933
File diff suppressed because it is too large
Load Diff
Vendored
+276
@@ -0,0 +1,276 @@
|
||||
{
|
||||
"main": {
|
||||
"id": "6999789c24e51884",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "dadf7198b8a66fc0",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "5b9e7c6a85c164fb",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "comparisons/alternatives-gafam.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "alternatives-gafam"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "a39ceee43683fcc8",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "smart-env-status-view",
|
||||
"state": {},
|
||||
"icon": "gauge",
|
||||
"title": "Smart Environment Status"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ab5c53de302f6c20",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Wiki/Wiki.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "Wiki"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "15d9c1ff962819ca",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "canvas",
|
||||
"state": {
|
||||
"file": "Sans titre.canvas",
|
||||
"viewState": {
|
||||
"x": 0,
|
||||
"y": 198,
|
||||
"zoom": 0
|
||||
}
|
||||
},
|
||||
"icon": "lucide-layout-dashboard",
|
||||
"title": "Sans titre"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "1255d44f6999a101",
|
||||
"type": "mobile-drawer",
|
||||
"children": [
|
||||
{
|
||||
"id": "4c3c1ef5298c1445",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Explorateur de fichiers"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "aa4d4651f0700a0d",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
},
|
||||
"icon": "lucide-search",
|
||||
"title": "Rechercher"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fa8cade51eac92a0",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-tags",
|
||||
"title": "Mots-clés"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "1f6b5025f8260523",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "all-properties",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-archive",
|
||||
"title": "Toutes les propriétés"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "202aaffb3da573c9",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {},
|
||||
"icon": "lucide-bookmark",
|
||||
"title": "Signets"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "ebc8d1f517c1db43",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "mk-path-view",
|
||||
"state": {},
|
||||
"icon": "layout-grid",
|
||||
"title": "Navigator"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 0
|
||||
},
|
||||
"right": {
|
||||
"id": "378bcc832bd9a93a",
|
||||
"type": "mobile-drawer",
|
||||
"children": [
|
||||
{
|
||||
"id": "2a3456abc25d662a",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "Wiki/Wiki.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Rétroliens"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "05f15b98474fbd27",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "Wiki/Wiki.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-going-out",
|
||||
"title": "Liens sortants"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "b3d6b73d51436506",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "index.md",
|
||||
"followCursor": false,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-list",
|
||||
"title": "Plan"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "da2aa21a15032748",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "smart-connections-view",
|
||||
"state": {},
|
||||
"icon": "smart-connections",
|
||||
"title": "Connections"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 3
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"smart-connections:Smart Connections: Open connections view": false,
|
||||
"smart-connections:Toggle Footer Connections": false,
|
||||
"smart-connections:Smart Connections: Open random connection": false,
|
||||
"switcher:Ouvrir le sélecteur rapide": false,
|
||||
"graph:Ouvrir la vue graphique": false,
|
||||
"canvas:Créer une nouvelle toile": false,
|
||||
"daily-notes:Ouvrir la note quotidienne": false,
|
||||
"templates:Insérer le modèle": false,
|
||||
"command-palette:Ouvrir la palette de commandes": false,
|
||||
"bases:Créer une nouvelle base": false
|
||||
}
|
||||
},
|
||||
"active": "15d9c1ff962819ca",
|
||||
"lastOpenFiles": [
|
||||
"Wiki/Wiki.md",
|
||||
"Catalogue-Self-Hosted.md",
|
||||
"catalogue-selfhosted/TEMPLATE-APP.md",
|
||||
"catalogue-selfhosted/categories",
|
||||
"catalogue-selfhosted/raw",
|
||||
"catalogue-selfhosted/apps",
|
||||
"catalogue-selfhosted",
|
||||
"Catalogue-Self-Hosted/raw/tag-2fa.md",
|
||||
"Catalogue-Self-Hosted/apps/app-vaultwarden.md",
|
||||
"Catalogue-Self-Hosted/apps/app-passbolt.md",
|
||||
"Catalogue-Self-Hosted/apps/app-ente-auth.md",
|
||||
"Catalogue-Self-Hosted/apps/app-bitwarden.md",
|
||||
"Catalogue-Self-Hosted/categories/cat-2fa.md",
|
||||
"Catalogue-Self-Hosted/raw",
|
||||
"Catalogue-Self-Hosted/apps",
|
||||
"Catalogue-Self-Hosted/categories",
|
||||
"Catalogue-Self-Hosted",
|
||||
"Sans titre.canvas",
|
||||
"comparisons/alternatives-gafam.md",
|
||||
"SCHEMA.md",
|
||||
"entities/entities.md",
|
||||
"Tags/Tags.md",
|
||||
"raw/raw.md",
|
||||
"docs/README.md",
|
||||
"docs/GUIDE-SMART-CONNECTIONS.md",
|
||||
"docs/GUIDE-MAKE-MD.md",
|
||||
"docs/GUIDE-GRAPH-ANALYSIS.md",
|
||||
"docs/docs.md",
|
||||
"queries/queries.md",
|
||||
"comparisons/comparisons.md",
|
||||
"docs/GUIDE-TAG-WRANGLER.md",
|
||||
"concepts/concepts.md",
|
||||
"entities/apache-2.md",
|
||||
"concepts/tokenisation.md",
|
||||
"concepts/tokenization.md",
|
||||
"Tags",
|
||||
"docs"
|
||||
]
|
||||
}
|
||||
Vendored
+251
@@ -0,0 +1,251 @@
|
||||
{
|
||||
"main": {
|
||||
"id": "407d556db10f200b",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "fd6cf697babc9254",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "16e05a672423be8b",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "markdown",
|
||||
"state": {
|
||||
"file": "Catalogue-Self-Hosted/categories/cat-arr.md",
|
||||
"mode": "source",
|
||||
"source": false
|
||||
},
|
||||
"icon": "lucide-file",
|
||||
"title": "cat-arr"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "vertical"
|
||||
},
|
||||
"left": {
|
||||
"id": "29a5ae7ad5f6b958",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "7acd77d58871bcf6",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "112d435e61ab9743",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "file-explorer",
|
||||
"state": {
|
||||
"sortOrder": "alphabetical",
|
||||
"autoReveal": false
|
||||
},
|
||||
"icon": "lucide-folder-closed",
|
||||
"title": "Explorateur de fichiers"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "2325700121235495",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "search",
|
||||
"state": {
|
||||
"query": "",
|
||||
"matchingCase": false,
|
||||
"explainSearch": false,
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical"
|
||||
},
|
||||
"icon": "lucide-search",
|
||||
"title": "Rechercher"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "77c81b5f1cb3b021",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "bookmarks",
|
||||
"state": {},
|
||||
"icon": "lucide-bookmark",
|
||||
"title": "Signets"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fd96ad949ba42675",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "mk-path-view",
|
||||
"state": {},
|
||||
"icon": "layout-grid",
|
||||
"title": "Navigator"
|
||||
}
|
||||
}
|
||||
]
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300
|
||||
},
|
||||
"right": {
|
||||
"id": "c18a5917092eed57",
|
||||
"type": "split",
|
||||
"children": [
|
||||
{
|
||||
"id": "4e774aeed84ddbf9",
|
||||
"type": "tabs",
|
||||
"children": [
|
||||
{
|
||||
"id": "67dbd5c182dd89b8",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "backlink",
|
||||
"state": {
|
||||
"file": "docs/GUIDE-SMART-CONNECTIONS.md",
|
||||
"collapseAll": false,
|
||||
"extraContext": false,
|
||||
"sortOrder": "alphabetical",
|
||||
"showSearch": false,
|
||||
"searchQuery": "",
|
||||
"backlinkCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-coming-in",
|
||||
"title": "Rétrolien pour GUIDE-SMART-CONNECTIONS"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "fa5865c1ea28d846",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outgoing-link",
|
||||
"state": {
|
||||
"file": "raw/articles/alternatives-gafam.md",
|
||||
"linksCollapsed": false,
|
||||
"unlinkedCollapsed": true
|
||||
},
|
||||
"icon": "links-going-out",
|
||||
"title": "Liens sortants de alternatives-gafam"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "94b33788580ac202",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "tag",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"useHierarchy": true,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-tags",
|
||||
"title": "Mots-clés"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "e7f37e96ef1c2bb3",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "all-properties",
|
||||
"state": {
|
||||
"sortOrder": "frequency",
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-archive",
|
||||
"title": "Toutes les propriétés"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "7fceda4cb0556ddb",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "outline",
|
||||
"state": {
|
||||
"file": "raw/articles/alternatives-gafam.md",
|
||||
"followCursor": false,
|
||||
"showSearch": false,
|
||||
"searchQuery": ""
|
||||
},
|
||||
"icon": "lucide-list",
|
||||
"title": "Plan de alternatives-gafam"
|
||||
}
|
||||
},
|
||||
{
|
||||
"id": "7f93ae39370c3106",
|
||||
"type": "leaf",
|
||||
"state": {
|
||||
"type": "smart-connections-view",
|
||||
"state": {},
|
||||
"icon": "smart-connections",
|
||||
"title": "Connections"
|
||||
}
|
||||
}
|
||||
],
|
||||
"currentTab": 5
|
||||
}
|
||||
],
|
||||
"direction": "horizontal",
|
||||
"width": 300,
|
||||
"collapsed": true
|
||||
},
|
||||
"left-ribbon": {
|
||||
"hiddenItems": {
|
||||
"switcher:Ouvrir le sélecteur rapide": false,
|
||||
"graph:Ouvrir la vue graphique": false,
|
||||
"canvas:Créer une nouvelle toile": false,
|
||||
"daily-notes:Ouvrir la note quotidienne": false,
|
||||
"templates:Insérer le modèle": false,
|
||||
"command-palette:Ouvrir la palette de commandes": false,
|
||||
"bases:Créer une nouvelle base": false,
|
||||
"knowledge-graph-analysis:Graph analysis view": false,
|
||||
"smart-connections:Smart Connections: Open connections view": false,
|
||||
"smart-connections:Toggle Footer Connections": false,
|
||||
"smart-connections:Smart Connections: Open random connection": false
|
||||
}
|
||||
},
|
||||
"active": "16e05a672423be8b",
|
||||
"lastOpenFiles": [
|
||||
"Catalogue-Self-Hosted/raw/tag-dashboard.md",
|
||||
"Catalogue-Self-Hosted/categories/cat-dashboard.md",
|
||||
"Catalogue-Self-Hosted/apps/app-docker-php-startpage.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dashlit.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dashwise.md",
|
||||
"Catalogue-Self-Hosted/apps/app-lab-dash.md",
|
||||
"Catalogue-Self-Hosted/apps/app-starbase-80.md",
|
||||
"Catalogue-Self-Hosted/apps/app-homarr-iframes.md",
|
||||
"Catalogue-Self-Hosted/apps/app-mergeable.md",
|
||||
"Catalogue-Self-Hosted/apps/app-iso.md",
|
||||
"Catalogue-Self-Hosted/apps/app-corecontrol.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dashdot.md",
|
||||
"Catalogue-Self-Hosted/apps/app-organizr.md",
|
||||
"Catalogue-Self-Hosted/apps/app-heimdall.md",
|
||||
"Catalogue-Self-Hosted/apps/app-homer.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dashy.md",
|
||||
"Catalogue-Self-Hosted/apps/app-homepage.md",
|
||||
"Catalogue-Self-Hosted/apps/app-glance.md",
|
||||
"Catalogue-Self-Hosted/apps/app-mafl.md",
|
||||
"Catalogue-Self-Hosted/apps/app-fenrus.md",
|
||||
"Catalogue-Self-Hosted/apps/app-honey.md",
|
||||
"Catalogue-Self-Hosted/apps/app-trala.md",
|
||||
"Catalogue-Self-Hosted/apps/app-miniboard.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dynacat.md",
|
||||
"Catalogue-Self-Hosted/apps/app-astroluma.md",
|
||||
"Catalogue-Self-Hosted/apps/app-dockpeek-dashboard.md",
|
||||
"catalogue-selfhosted/apps",
|
||||
"catalogue-selfhosted/categories",
|
||||
"catalogue-selfhosted/raw",
|
||||
"catalogue-selfhosted",
|
||||
"Sans titre.canvas",
|
||||
"raw/rp-todo.json",
|
||||
"raw/build-todo.py",
|
||||
"raw/inspect.py",
|
||||
"raw/extract-rp.py",
|
||||
"raw/software.json",
|
||||
"raw/tags.json"
|
||||
]
|
||||
}
|
||||
@@ -0,0 +1,3 @@
|
||||
|
||||
"embedding_models:transformers#1780762405055": {"api_key":"","provider_key":"transformers","model_key":"TaylorAI/bge-micro-v2","dims":384,"max_tokens":512,"class_name":"EmbeddingModel","created_at":1780762405055,"key":"transformers#1780762405055"},
|
||||
"embedding_models:transformers#1780763105932": {"api_key":"","provider_key":"transformers","model_key":"TaylorAI/bge-micro-v2","dims":384,"max_tokens":512,"class_name":"EmbeddingModel","created_at":1780763105932,"key":"transformers#1780763105932","test_passed":true},
|
||||
File diff suppressed because it is too large
Load Diff
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lll2se","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#---frontmatter---","lines":[1,10],"size":247,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5f34ry","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder","lines":[12,71],"size":1875,"outlinks":[{"title":"13ft.example.com","target":"https://github.com/iamadamdev/13ft","line":9},{"title":"iamadamdev/13ft","target":"https://github.com/iamadamdev/13ft","line":10},{"title":"Paywalls","target":"cat-paywalls","line":14},{"title":"app-marreta","target":"app-marreta","line":41},{"title":"app-archivebox","target":"app-archivebox","line":42},{"title":"Documentation","target":"https://github.com/iamadamdev/13ft#readme","line":53},{"title":"GitHub","target":"https://github.com/iamadamdev/13ft","line":54},{"title":"cat-paywalls","target":"cat-paywalls","line":57},{"title":"app-marreta","target":"app-marreta","line":58},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":59}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"fg51qr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#{1}","lines":[14,15],"size":86,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"znasxr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📋 Informations Générales","lines":[16,26],"size":349,"outlinks":[{"title":"13ft.example.com","target":"https://github.com/iamadamdev/13ft","line":5},{"title":"iamadamdev/13ft","target":"https://github.com/iamadamdev/13ft","line":6},{"title":"Paywalls","target":"cat-paywalls","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1b3tim3","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📋 Informations Générales#{1}","lines":[18,26],"size":317,"outlinks":[{"title":"13ft.example.com","target":"https://github.com/iamadamdev/13ft","line":3},{"title":"iamadamdev/13ft","target":"https://github.com/iamadamdev/13ft","line":4},{"title":"Paywalls","target":"cat-paywalls","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dwtnms","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📝 Description","lines":[27,30],"size":430,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2zr6gj","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📝 Description#{1}","lines":[29,30],"size":409,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pye96j","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation","lines":[31,48],"size":350,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6ld4wy","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)","lines":[33,48],"size":328,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o872l","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,48],"size":293,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"fvqr45","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives","lines":[49,58],"size":227,"outlinks":[{"title":"app-marreta","target":"app-marreta","line":4},{"title":"app-archivebox","target":"app-archivebox","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1aphrm7","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Open Source","lines":[51,54],"size":101,"outlinks":[{"title":"app-marreta","target":"app-marreta","line":2},{"title":"app-archivebox","target":"app-archivebox","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1p6pook","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Open Source#{1}","lines":[52,54],"size":84,"outlinks":[{"title":"app-marreta","target":"app-marreta","line":1},{"title":"app-archivebox","target":"app-archivebox","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1pvz8c6","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Propriétaires","lines":[55,58],"size":103,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1gcbk68","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔄 Alternatives#Propriétaires#{1}","lines":[56,58],"size":84,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"17g3ybk","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔐 Sécurité","lines":[59,62],"size":138,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"px4kzn","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#🔐 Sécurité#{1}","lines":[60,62],"size":122,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1vhf839","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📚 Ressources","lines":[63,66],"size":129,"outlinks":[{"title":"Documentation","target":"https://github.com/iamadamdev/13ft#readme","line":2},{"title":"GitHub","target":"https://github.com/iamadamdev/13ft","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"b4rxjm","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#📚 Ressources#{1}","lines":[64,66],"size":111,"outlinks":[{"title":"Documentation","target":"https://github.com/iamadamdev/13ft#readme","line":1},{"title":"GitHub","target":"https://github.com/iamadamdev/13ft","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"y0nlob","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#Pages Liées","lines":[67,71],"size":139,"outlinks":[{"title":"cat-paywalls","target":"cat-paywalls","line":2},{"title":"app-marreta","target":"app-marreta","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1hi6foj","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md#🪜 13ft Ladder#Pages Liées#{1}","lines":[68,71],"size":123,"outlinks":[{"title":"cat-paywalls","target":"cat-paywalls","line":1},{"title":"app-marreta","target":"app-marreta","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-13ft-ladder.md": {"path":"Catalogue-Self-Hosted/apps/app-13ft-ladder.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"11rvati","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780928026891,"size":2178,"at":1780929441607,"hash":"11rvati"},"blocks":{"#---frontmatter---":[1,10],"#🪜 13ft Ladder":[12,71],"#🪜 13ft Ladder#{1}":[14,15],"#🪜 13ft Ladder#📋 Informations Générales":[16,26],"#🪜 13ft Ladder#📋 Informations Générales#{1}":[18,26],"#🪜 13ft Ladder#📝 Description":[27,30],"#🪜 13ft Ladder#📝 Description#{1}":[29,30],"#🪜 13ft Ladder#🚀 Installation":[31,48],"#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)":[33,48],"#🪜 13ft Ladder#🚀 Installation#Docker Compose (recommandé)#{1}":[35,48],"#🪜 13ft Ladder#🔄 Alternatives":[49,58],"#🪜 13ft Ladder#🔄 Alternatives#Open Source":[51,54],"#🪜 13ft Ladder#🔄 Alternatives#Open Source#{1}":[52,54],"#🪜 13ft Ladder#🔄 Alternatives#Propriétaires":[55,58],"#🪜 13ft Ladder#🔄 Alternatives#Propriétaires#{1}":[56,58],"#🪜 13ft Ladder#🔐 Sécurité":[59,62],"#🪜 13ft Ladder#🔐 Sécurité#{1}":[60,62],"#🪜 13ft Ladder#📚 Ressources":[63,66],"#🪜 13ft Ladder#📚 Ressources#{1}":[64,66],"#🪜 13ft Ladder#Pages Liées":[67,71],"#🪜 13ft Ladder#Pages Liées#{1}":[68,71]},"outlinks":[{"title":"13ft.example.com","target":"https://github.com/iamadamdev/13ft","line":20},{"title":"iamadamdev/13ft","target":"https://github.com/iamadamdev/13ft","line":21},{"title":"Paywalls","target":"cat-paywalls","line":25},{"title":"app-marreta","target":"app-marreta","line":52},{"title":"app-archivebox","target":"app-archivebox","line":53},{"title":"Documentation","target":"https://github.com/iamadamdev/13ft#readme","line":64},{"title":"GitHub","target":"https://github.com/iamadamdev/13ft","line":65},{"title":"cat-paywalls","target":"cat-paywalls","line":68},{"title":"app-marreta","target":"app-marreta","line":69},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":70}],"metadata":{"title":"13ft Ladder","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#paywalls","#app-marathon3-rattrapage-final-b"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=paywalls&app=13ft-ladder"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,47]]},
|
||||
@@ -0,0 +1,36 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hkvsm","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#---frontmatter---","lines":[1,10],"size":231,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1wvwmhe","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel","lines":[12,91],"size":3074,"outlinks":[{"title":"1panel.hk","target":"https://1panel.hk","line":9},{"title":"1Panel-dev/1Panel","target":"https://github.com/1Panel-dev/1Panel","line":10},{"title":"Server Management","target":"cat-server-management","line":14},{"title":"app-webmin","target":"app-webmin","line":56},{"title":"Documentation officielle","target":"https://docs.1panel.hk/","line":71},{"title":"App Store 1Panel","target":"https://apps.1panel.hk/","line":72},{"title":"GitHub 1Panel","target":"https://github.com/1Panel-dev/1Panel","line":73},{"title":"cat-server-management","target":"cat-server-management","line":76},{"title":"app-webmin","target":"app-webmin","line":77},{"title":"app-portainer","target":"app-portainer","line":78},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":79}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1amvkq9","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#{1}","lines":[14,15],"size":137,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dq02uo","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📋 Informations Générales","lines":[16,26],"size":339,"outlinks":[{"title":"1panel.hk","target":"https://1panel.hk","line":5},{"title":"1Panel-dev/1Panel","target":"https://github.com/1Panel-dev/1Panel","line":6},{"title":"Server Management","target":"cat-server-management","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"u9tfkt","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📋 Informations Générales#{1}","lines":[18,26],"size":309,"outlinks":[{"title":"1panel.hk","target":"https://1panel.hk","line":3},{"title":"1Panel-dev/1Panel","target":"https://github.com/1Panel-dev/1Panel","line":4},{"title":"Server Management","target":"cat-server-management","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"p99a16","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📝 Description","lines":[27,30],"size":755,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"nsjt58","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📝 Description#{1}","lines":[29,30],"size":736,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"nencrp","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation","lines":[31,63],"size":855,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Install script (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3wbh5c","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Install script (recommandé)","lines":[33,38],"size":157,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Install script (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1p3ra01","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Install script (recommandé)#{1}","lines":[35,38],"size":124,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19cf5nr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)","lines":[39,63],"size":677,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"mw3ruz","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)#{1}","lines":[41,63],"size":648,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"13fwza9","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives","lines":[64,75],"size":349,"outlinks":[{"title":"app-webmin","target":"app-webmin","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ihk7yo","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source","lines":[66,71],"size":211,"outlinks":[{"title":"app-webmin","target":"app-webmin","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15q9twn","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{1}","lines":[67,67],"size":56,"outlinks":[{"title":"app-webmin","target":"app-webmin","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ibk8nh","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{2}","lines":[68,68],"size":45,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ybqcz3","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{3}","lines":[69,69],"size":53,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1deg9a2","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Open Source#{4}","lines":[70,71],"size":38,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ez3dru","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires","lines":[72,75],"size":117,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"cbaqqj","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{1}","lines":[73,73],"size":52,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1vvpp4q","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{2}","lines":[74,75],"size":46,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dltr7a","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité","lines":[76,80],"size":242,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lj61xg","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{1}","lines":[77,77],"size":59,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ihx5d5","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{2}","lines":[78,78],"size":82,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1kpcf1n","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#🔐 Sécurité#{3}","lines":[79,80],"size":84,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19bpa6f","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources","lines":[81,85],"size":173,"outlinks":[{"title":"Documentation officielle","target":"https://docs.1panel.hk/","line":2},{"title":"App Store 1Panel","target":"https://apps.1panel.hk/","line":3},{"title":"GitHub 1Panel","target":"https://github.com/1Panel-dev/1Panel","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1yxkare","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{1}","lines":[82,82],"size":53,"outlinks":[{"title":"Documentation officielle","target":"https://docs.1panel.hk/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1j5wimi","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{2}","lines":[83,83],"size":45,"outlinks":[{"title":"App Store 1Panel","target":"https://apps.1panel.hk/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"94z10l","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#📚 Ressources#{3}","lines":[84,85],"size":56,"outlinks":[{"title":"GitHub 1Panel","target":"https://github.com/1Panel-dev/1Panel","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14l5ilm","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées","lines":[86,91],"size":203,"outlinks":[{"title":"cat-server-management","target":"cat-server-management","line":2},{"title":"app-webmin","target":"app-webmin","line":3},{"title":"app-portainer","target":"app-portainer","line":4},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1w2m5wk","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{1}","lines":[87,87],"size":57,"outlinks":[{"title":"cat-server-management","target":"cat-server-management","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"plnt0n","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{2}","lines":[88,88],"size":40,"outlinks":[{"title":"app-webmin","target":"app-webmin","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"rfrp45","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{3}","lines":[89,89],"size":39,"outlinks":[{"title":"app-portainer","target":"app-portainer","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-1panel.md#🖥️ 1Panel#Pages Liées#{4}","lines":[90,91],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-1panel.md": {"path":"Catalogue-Self-Hosted/apps/app-1panel.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"huw222","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780922065907,"size":3383,"at":1780929441607,"hash":"huw222"},"blocks":{"#---frontmatter---":[1,10],"#🖥️ 1Panel":[12,91],"#🖥️ 1Panel#{1}":[14,15],"#🖥️ 1Panel#📋 Informations Générales":[16,26],"#🖥️ 1Panel#📋 Informations Générales#{1}":[18,26],"#🖥️ 1Panel#📝 Description":[27,30],"#🖥️ 1Panel#📝 Description#{1}":[29,30],"#🖥️ 1Panel#🚀 Installation":[31,63],"#🖥️ 1Panel#🚀 Installation#Install script (recommandé)":[33,38],"#🖥️ 1Panel#🚀 Installation#Install script (recommandé)#{1}":[35,38],"#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)":[39,63],"#🖥️ 1Panel#🚀 Installation#Docker Compose (manuel)#{1}":[41,63],"#🖥️ 1Panel#🔄 Alternatives":[64,75],"#🖥️ 1Panel#🔄 Alternatives#Open Source":[66,71],"#🖥️ 1Panel#🔄 Alternatives#Open Source#{1}":[67,67],"#🖥️ 1Panel#🔄 Alternatives#Open Source#{2}":[68,68],"#🖥️ 1Panel#🔄 Alternatives#Open Source#{3}":[69,69],"#🖥️ 1Panel#🔄 Alternatives#Open Source#{4}":[70,71],"#🖥️ 1Panel#🔄 Alternatives#Propriétaires":[72,75],"#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{1}":[73,73],"#🖥️ 1Panel#🔄 Alternatives#Propriétaires#{2}":[74,75],"#🖥️ 1Panel#🔐 Sécurité":[76,80],"#🖥️ 1Panel#🔐 Sécurité#{1}":[77,77],"#🖥️ 1Panel#🔐 Sécurité#{2}":[78,78],"#🖥️ 1Panel#🔐 Sécurité#{3}":[79,80],"#🖥️ 1Panel#📚 Ressources":[81,85],"#🖥️ 1Panel#📚 Ressources#{1}":[82,82],"#🖥️ 1Panel#📚 Ressources#{2}":[83,83],"#🖥️ 1Panel#📚 Ressources#{3}":[84,85],"#🖥️ 1Panel#Pages Liées":[86,91],"#🖥️ 1Panel#Pages Liées#{1}":[87,87],"#🖥️ 1Panel#Pages Liées#{2}":[88,88],"#🖥️ 1Panel#Pages Liées#{3}":[89,89],"#🖥️ 1Panel#Pages Liées#{4}":[90,91]},"outlinks":[{"title":"1panel.hk","target":"https://1panel.hk","line":20},{"title":"1Panel-dev/1Panel","target":"https://github.com/1Panel-dev/1Panel","line":21},{"title":"Server Management","target":"cat-server-management","line":25},{"title":"app-webmin","target":"app-webmin","line":67},{"title":"Documentation officielle","target":"https://docs.1panel.hk/","line":82},{"title":"App Store 1Panel","target":"https://apps.1panel.hk/","line":83},{"title":"GitHub 1Panel","target":"https://github.com/1Panel-dev/1Panel","line":84},{"title":"cat-server-management","target":"cat-server-management","line":87},{"title":"app-webmin","target":"app-webmin","line":88},{"title":"app-portainer","target":"app-portainer","line":89},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":90}],"metadata":{"title":"1Panel","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#server-management","#app-marathon-batch-a"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=Server+Management&app=1panel"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,37],[41,62]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lt8jst","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#---frontmatter---","lines":[1,10],"size":242,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18atg80","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local","lines":[12,79],"size":2335,"outlinks":[{"title":"8mb.app","target":"https://8mb.app","line":9},{"title":"Video Editing","target":"cat-video-editing\\","line":14},{"title":"app-opencut","target":"app-opencut","line":46},{"title":"app-shotcut","target":"app-shotcut","line":47},{"title":"app-kdenlive","target":"app-kdenlive","line":48},{"title":"Site officiel","target":"https://8mb.app","line":61},{"title":"Forks communautaires GitHub","target":"https://github.com/search?q=8mb+video+editor","line":62},{"title":"cat-video-editing","target":"cat-video-editing","line":65},{"title":"app-opencut","target":"app-opencut","line":66},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":67}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hvnqtf","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#{1}","lines":[14,15],"size":95,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bpd051","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📋 Informations Générales","lines":[16,26],"size":297,"outlinks":[{"title":"8mb.app","target":"https://8mb.app","line":5},{"title":"Video Editing","target":"cat-video-editing\\","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10azj9n","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📋 Informations Générales#{1}","lines":[18,26],"size":265,"outlinks":[{"title":"8mb.app","target":"https://8mb.app","line":3},{"title":"Video Editing","target":"cat-video-editing\\","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ipx65d","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📝 Description","lines":[27,30],"size":462,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jx4qeu","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📝 Description#{1}","lines":[29,30],"size":441,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"zbrj0u","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation","lines":[31,53],"size":665,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1glf3m2","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)","lines":[33,53],"size":643,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wq8iih","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,53],"size":608,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"13kn9u","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives","lines":[54,65],"size":327,"outlinks":[{"title":"app-opencut","target":"app-opencut","line":4},{"title":"app-shotcut","target":"app-shotcut","line":5},{"title":"app-kdenlive","target":"app-kdenlive","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"85mjim","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Open Source","lines":[56,60],"size":138,"outlinks":[{"title":"app-opencut","target":"app-opencut","line":2},{"title":"app-shotcut","target":"app-shotcut","line":3},{"title":"app-kdenlive","target":"app-kdenlive","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"iq3gup","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Open Source#{1}","lines":[57,60],"size":121,"outlinks":[{"title":"app-opencut","target":"app-opencut","line":1},{"title":"app-shotcut","target":"app-shotcut","line":2},{"title":"app-kdenlive","target":"app-kdenlive","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1u0xyoe","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Propriétaires","lines":[61,65],"size":166,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o9pi6o","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔄 Alternatives#Propriétaires#{1}","lines":[62,65],"size":147,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9fvpmw","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔐 Sécurité","lines":[66,70],"size":172,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"oui410","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#🔐 Sécurité#{1}","lines":[67,70],"size":156,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1e5422q","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📚 Ressources","lines":[71,74],"size":134,"outlinks":[{"title":"Site officiel","target":"https://8mb.app","line":2},{"title":"Forks communautaires GitHub","target":"https://github.com/search?q=8mb+video+editor","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1f589j6","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#📚 Ressources#{1}","lines":[72,74],"size":116,"outlinks":[{"title":"Site officiel","target":"https://8mb.app","line":1},{"title":"Forks communautaires GitHub","target":"https://github.com/search?q=8mb+video+editor","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"k2m2xm","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#Pages Liées","lines":[75,79],"size":158,"outlinks":[{"title":"cat-video-editing","target":"cat-video-editing","line":2},{"title":"app-opencut","target":"app-opencut","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"13g9rla","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-8mb-local.md#📼 8mb Local#Pages Liées#{1}","lines":[76,79],"size":142,"outlinks":[{"title":"cat-video-editing","target":"cat-video-editing","line":1},{"title":"app-opencut","target":"app-opencut","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-8mb-local.md": {"path":"Catalogue-Self-Hosted/apps/app-8mb-local.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"c4ox9v","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780928026892,"size":2650,"at":1780929441607,"hash":"c4ox9v"},"blocks":{"#---frontmatter---":[1,10],"#📼 8mb Local":[12,79],"#📼 8mb Local#{1}":[14,15],"#📼 8mb Local#📋 Informations Générales":[16,26],"#📼 8mb Local#📋 Informations Générales#{1}":[18,26],"#📼 8mb Local#📝 Description":[27,30],"#📼 8mb Local#📝 Description#{1}":[29,30],"#📼 8mb Local#🚀 Installation":[31,53],"#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)":[33,53],"#📼 8mb Local#🚀 Installation#Docker Compose (recommandé)#{1}":[35,53],"#📼 8mb Local#🔄 Alternatives":[54,65],"#📼 8mb Local#🔄 Alternatives#Open Source":[56,60],"#📼 8mb Local#🔄 Alternatives#Open Source#{1}":[57,60],"#📼 8mb Local#🔄 Alternatives#Propriétaires":[61,65],"#📼 8mb Local#🔄 Alternatives#Propriétaires#{1}":[62,65],"#📼 8mb Local#🔐 Sécurité":[66,70],"#📼 8mb Local#🔐 Sécurité#{1}":[67,70],"#📼 8mb Local#📚 Ressources":[71,74],"#📼 8mb Local#📚 Ressources#{1}":[72,74],"#📼 8mb Local#Pages Liées":[75,79],"#📼 8mb Local#Pages Liées#{1}":[76,79]},"outlinks":[{"title":"8mb.app","target":"https://8mb.app","line":20},{"title":"Video Editing","target":"cat-video-editing\\","line":25},{"title":"app-opencut","target":"app-opencut","line":57},{"title":"app-shotcut","target":"app-shotcut","line":58},{"title":"app-kdenlive","target":"app-kdenlive","line":59},{"title":"Site officiel","target":"https://8mb.app","line":72},{"title":"Forks communautaires GitHub","target":"https://github.com/search?q=8mb+video+editor","line":73},{"title":"cat-video-editing","target":"cat-video-editing","line":76},{"title":"app-opencut","target":"app-opencut","line":77},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":78}],"metadata":{"title":"8mb Local","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#video-editing","#app-marathon3-batch-b"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=video-editing&app=8mb-local"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,50]]},
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xy4ke5","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#---frontmatter---","lines":[1,10],"size":235,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3msd5y","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify","lines":[12,85],"size":2168,"outlinks":[{"title":"ackify.example.com","target":"https://github.com/bespinian/ackify","line":9},{"title":"bespinian/ackify","target":"https://github.com/bespinian/ackify","line":10},{"title":"Privacy","target":"cat-privacy","line":14},{"title":"app-docusign","target":"app-docusign","line":55},{"title":"app-cryptpad","target":"app-cryptpad","line":56},{"title":"Documentation","target":"https://github.com/bespinian/ackify#readme","line":67},{"title":"GitHub","target":"https://github.com/bespinian/ackify","line":68},{"title":"cat-privacy","target":"cat-privacy","line":71},{"title":"app-cryptpad","target":"app-cryptpad","line":72},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":73}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"mvezht","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#{1}","lines":[14,15],"size":97,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1egx8kx","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📋 Informations Générales","lines":[16,26],"size":345,"outlinks":[{"title":"ackify.example.com","target":"https://github.com/bespinian/ackify","line":5},{"title":"bespinian/ackify","target":"https://github.com/bespinian/ackify","line":6},{"title":"Privacy","target":"cat-privacy","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"42j80u","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📋 Informations Générales#{1}","lines":[18,26],"size":313,"outlinks":[{"title":"ackify.example.com","target":"https://github.com/bespinian/ackify","line":3},{"title":"bespinian/ackify","target":"https://github.com/bespinian/ackify","line":4},{"title":"Privacy","target":"cat-privacy","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11uly2z","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📝 Description","lines":[27,30],"size":364,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3qz2he","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📝 Description#{1}","lines":[29,30],"size":343,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1u2w6rb","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation","lines":[31,62],"size":725,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1dv094g","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)","lines":[33,62],"size":703,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1utrerk","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,62],"size":668,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"oskz2c","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives","lines":[63,72],"size":242,"outlinks":[{"title":"app-docusign","target":"app-docusign","line":4},{"title":"app-cryptpad","target":"app-cryptpad","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1h3bgiq","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Open Source","lines":[65,68],"size":117,"outlinks":[{"title":"app-docusign","target":"app-docusign","line":2},{"title":"app-cryptpad","target":"app-cryptpad","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19vo03i","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Open Source#{1}","lines":[66,68],"size":100,"outlinks":[{"title":"app-docusign","target":"app-docusign","line":1},{"title":"app-cryptpad","target":"app-cryptpad","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"vliz5o","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Propriétaires","lines":[69,72],"size":102,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xhbzi8","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔄 Alternatives#Propriétaires#{1}","lines":[70,72],"size":83,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"atqrcz","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔐 Sécurité","lines":[73,76],"size":94,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1hn043z","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#🔐 Sécurité#{1}","lines":[74,76],"size":78,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pli27c","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📚 Ressources","lines":[77,80],"size":131,"outlinks":[{"title":"Documentation","target":"https://github.com/bespinian/ackify#readme","line":2},{"title":"GitHub","target":"https://github.com/bespinian/ackify","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11qq2ij","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#📚 Ressources#{1}","lines":[78,80],"size":113,"outlinks":[{"title":"Documentation","target":"https://github.com/bespinian/ackify#readme","line":1},{"title":"GitHub","target":"https://github.com/bespinian/ackify","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15ipuln","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#Pages Liées","lines":[81,85],"size":148,"outlinks":[{"title":"cat-privacy","target":"cat-privacy","line":2},{"title":"app-cryptpad","target":"app-cryptpad","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1bsi2hn","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-ackify.md#✍️ Ackify#Pages Liées#{1}","lines":[82,85],"size":132,"outlinks":[{"title":"cat-privacy","target":"cat-privacy","line":1},{"title":"app-cryptpad","target":"app-cryptpad","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-ackify.md": {"path":"Catalogue-Self-Hosted/apps/app-ackify.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"ysfhr7","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780928026893,"size":2468,"at":1780929441607,"hash":"ysfhr7"},"blocks":{"#---frontmatter---":[1,10],"#✍️ Ackify":[12,85],"#✍️ Ackify#{1}":[14,15],"#✍️ Ackify#📋 Informations Générales":[16,26],"#✍️ Ackify#📋 Informations Générales#{1}":[18,26],"#✍️ Ackify#📝 Description":[27,30],"#✍️ Ackify#📝 Description#{1}":[29,30],"#✍️ Ackify#🚀 Installation":[31,62],"#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)":[33,62],"#✍️ Ackify#🚀 Installation#Docker Compose (recommandé)#{1}":[35,62],"#✍️ Ackify#🔄 Alternatives":[63,72],"#✍️ Ackify#🔄 Alternatives#Open Source":[65,68],"#✍️ Ackify#🔄 Alternatives#Open Source#{1}":[66,68],"#✍️ Ackify#🔄 Alternatives#Propriétaires":[69,72],"#✍️ Ackify#🔄 Alternatives#Propriétaires#{1}":[70,72],"#✍️ Ackify#🔐 Sécurité":[73,76],"#✍️ Ackify#🔐 Sécurité#{1}":[74,76],"#✍️ Ackify#📚 Ressources":[77,80],"#✍️ Ackify#📚 Ressources#{1}":[78,80],"#✍️ Ackify#Pages Liées":[81,85],"#✍️ Ackify#Pages Liées#{1}":[82,85]},"outlinks":[{"title":"ackify.example.com","target":"https://github.com/bespinian/ackify","line":20},{"title":"bespinian/ackify","target":"https://github.com/bespinian/ackify","line":21},{"title":"Privacy","target":"cat-privacy","line":25},{"title":"app-docusign","target":"app-docusign","line":66},{"title":"app-cryptpad","target":"app-cryptpad","line":67},{"title":"Documentation","target":"https://github.com/bespinian/ackify#readme","line":78},{"title":"GitHub","target":"https://github.com/bespinian/ackify","line":79},{"title":"cat-privacy","target":"cat-privacy","line":82},{"title":"app-cryptpad","target":"app-cryptpad","line":83},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":84}],"metadata":{"title":"Ackify","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#privacy","#app-marathon3-rattrapage-final-b"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=privacy&app=ackify"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,61]]},
|
||||
@@ -0,0 +1,36 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qtkckv","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#---frontmatter---","lines":[1,10],"size":258,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1i7qazt","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces","lines":[12,116],"size":3982,"outlinks":[{"title":"activepieces.com","target":"https://activepieces.com","line":9},{"title":"activepieces/activepieces","target":"https://github.com/activepieces/activepieces","line":10},{"title":"Workflow Automation","target":"cat-workflow-automation\\","line":14},{"title":"app-n8n","target":"app-n8n","line":79},{"title":"app-node-red","target":"app-node-red","line":80},{"title":"app-kestra","target":"app-kestra","line":81},{"title":"app-automatisch","target":"app-automatisch","line":82},{"title":"Documentation officielle","target":"https://www.activepieces.com/docs","line":96},{"title":"Pieces marketplace","target":"https://www.activepieces.com/pieces","line":97},{"title":"GitHub Activepieces","target":"https://github.com/activepieces/activepieces","line":98},{"title":"cat-workflow-automation","target":"cat-workflow-automation","line":101},{"title":"app-n8n","target":"app-n8n","line":102},{"title":"app-automatisch","target":"app-automatisch","line":103},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":104}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"mtnbqp","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#{1}","lines":[14,15],"size":182,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3nrp5v","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📋 Informations Générales","lines":[16,26],"size":400,"outlinks":[{"title":"activepieces.com","target":"https://activepieces.com","line":5},{"title":"activepieces/activepieces","target":"https://github.com/activepieces/activepieces","line":6},{"title":"Workflow Automation","target":"cat-workflow-automation\\","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"b7m9p0","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📋 Informations Générales#{1}","lines":[18,26],"size":370,"outlinks":[{"title":"activepieces.com","target":"https://activepieces.com","line":3},{"title":"activepieces/activepieces","target":"https://github.com/activepieces/activepieces","line":4},{"title":"Workflow Automation","target":"cat-workflow-automation\\","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15f4jc9","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📝 Description","lines":[27,30],"size":775,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3b4bq0","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📝 Description#{1}","lines":[29,30],"size":756,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hyvpf4","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation","lines":[31,86],"size":1389,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xsg3sr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)","lines":[33,86],"size":1369,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"iu5trb","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,86],"size":1336,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2kgzm3","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives","lines":[87,99],"size":456,"outlinks":[{"title":"app-n8n","target":"app-n8n","line":4},{"title":"app-node-red","target":"app-node-red","line":5},{"title":"app-kestra","target":"app-kestra","line":6},{"title":"app-automatisch","target":"app-automatisch","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1t5mgqh","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source","lines":[89,94],"size":253,"outlinks":[{"title":"app-n8n","target":"app-n8n","line":2},{"title":"app-node-red","target":"app-node-red","line":3},{"title":"app-kestra","target":"app-kestra","line":4},{"title":"app-automatisch","target":"app-automatisch","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12mbc95","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{1}","lines":[90,90],"size":68,"outlinks":[{"title":"app-n8n","target":"app-n8n","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"aio5l3","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{2}","lines":[91,91],"size":55,"outlinks":[{"title":"app-node-red","target":"app-node-red","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bhppv7","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{3}","lines":[92,92],"size":60,"outlinks":[{"title":"app-kestra","target":"app-kestra","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ch3l3v","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Open Source#{4}","lines":[93,94],"size":51,"outlinks":[{"title":"app-automatisch","target":"app-automatisch","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"23azsb","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires","lines":[95,99],"size":182,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11bqi9f","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{1}","lines":[96,96],"size":43,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jtubi2","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{2}","lines":[97,97],"size":61,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1t5d8eb","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{3}","lines":[98,99],"size":58,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1duhrfy","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité","lines":[100,105],"size":328,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1n70awi","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{1}","lines":[101,101],"size":80,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1x01ynp","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{2}","lines":[102,102],"size":85,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1520if1","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{3}","lines":[103,103],"size":68,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1otuii9","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#🔐 Sécurité#{4}","lines":[104,105],"size":77,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1nmcsa0","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources","lines":[106,110],"size":211,"outlinks":[{"title":"Documentation officielle","target":"https://www.activepieces.com/docs","line":2},{"title":"Pieces marketplace","target":"https://www.activepieces.com/pieces","line":3},{"title":"GitHub Activepieces","target":"https://github.com/activepieces/activepieces","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1od0hwa","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{1}","lines":[107,107],"size":63,"outlinks":[{"title":"Documentation officielle","target":"https://www.activepieces.com/docs","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"vz0jo7","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{2}","lines":[108,108],"size":59,"outlinks":[{"title":"Pieces marketplace","target":"https://www.activepieces.com/pieces","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1t7kqzr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#📚 Ressources#{3}","lines":[109,110],"size":70,"outlinks":[{"title":"GitHub Activepieces","target":"https://github.com/activepieces/activepieces","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o25j68","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées","lines":[111,116],"size":215,"outlinks":[{"title":"cat-workflow-automation","target":"cat-workflow-automation","line":2},{"title":"app-n8n","target":"app-n8n","line":3},{"title":"app-automatisch","target":"app-automatisch","line":4},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"rz2ink","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{1}","lines":[112,112],"size":61,"outlinks":[{"title":"cat-workflow-automation","target":"cat-workflow-automation","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1kr4gc0","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{2}","lines":[113,113],"size":36,"outlinks":[{"title":"app-n8n","target":"app-n8n","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6wc2vn","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{3}","lines":[114,114],"size":51,"outlinks":[{"title":"app-automatisch","target":"app-automatisch","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-activepieces.md#⚙️ Activepieces#Pages Liées#{4}","lines":[115,116],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-activepieces.md": {"path":"Catalogue-Self-Hosted/apps/app-activepieces.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"wo1qkt","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780922962423,"size":4327,"at":1780929441607,"hash":"wo1qkt"},"blocks":{"#---frontmatter---":[1,10],"#⚙️ Activepieces":[12,116],"#⚙️ Activepieces#{1}":[14,15],"#⚙️ Activepieces#📋 Informations Générales":[16,26],"#⚙️ Activepieces#📋 Informations Générales#{1}":[18,26],"#⚙️ Activepieces#📝 Description":[27,30],"#⚙️ Activepieces#📝 Description#{1}":[29,30],"#⚙️ Activepieces#🚀 Installation":[31,86],"#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)":[33,86],"#⚙️ Activepieces#🚀 Installation#Docker Compose (recommandé)#{1}":[35,86],"#⚙️ Activepieces#🔄 Alternatives":[87,99],"#⚙️ Activepieces#🔄 Alternatives#Open Source":[89,94],"#⚙️ Activepieces#🔄 Alternatives#Open Source#{1}":[90,90],"#⚙️ Activepieces#🔄 Alternatives#Open Source#{2}":[91,91],"#⚙️ Activepieces#🔄 Alternatives#Open Source#{3}":[92,92],"#⚙️ Activepieces#🔄 Alternatives#Open Source#{4}":[93,94],"#⚙️ Activepieces#🔄 Alternatives#Propriétaires":[95,99],"#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{1}":[96,96],"#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{2}":[97,97],"#⚙️ Activepieces#🔄 Alternatives#Propriétaires#{3}":[98,99],"#⚙️ Activepieces#🔐 Sécurité":[100,105],"#⚙️ Activepieces#🔐 Sécurité#{1}":[101,101],"#⚙️ Activepieces#🔐 Sécurité#{2}":[102,102],"#⚙️ Activepieces#🔐 Sécurité#{3}":[103,103],"#⚙️ Activepieces#🔐 Sécurité#{4}":[104,105],"#⚙️ Activepieces#📚 Ressources":[106,110],"#⚙️ Activepieces#📚 Ressources#{1}":[107,107],"#⚙️ Activepieces#📚 Ressources#{2}":[108,108],"#⚙️ Activepieces#📚 Ressources#{3}":[109,110],"#⚙️ Activepieces#Pages Liées":[111,116],"#⚙️ Activepieces#Pages Liées#{1}":[112,112],"#⚙️ Activepieces#Pages Liées#{2}":[113,113],"#⚙️ Activepieces#Pages Liées#{3}":[114,114],"#⚙️ Activepieces#Pages Liées#{4}":[115,116]},"outlinks":[{"title":"activepieces.com","target":"https://activepieces.com","line":20},{"title":"activepieces/activepieces","target":"https://github.com/activepieces/activepieces","line":21},{"title":"Workflow Automation","target":"cat-workflow-automation\\","line":25},{"title":"app-n8n","target":"app-n8n","line":90},{"title":"app-node-red","target":"app-node-red","line":91},{"title":"app-kestra","target":"app-kestra","line":92},{"title":"app-automatisch","target":"app-automatisch","line":93},{"title":"Documentation officielle","target":"https://www.activepieces.com/docs","line":107},{"title":"Pieces marketplace","target":"https://www.activepieces.com/pieces","line":108},{"title":"GitHub Activepieces","target":"https://github.com/activepieces/activepieces","line":109},{"title":"cat-workflow-automation","target":"cat-workflow-automation","line":112},{"title":"app-n8n","target":"app-n8n","line":113},{"title":"app-automatisch","target":"app-automatisch","line":114},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":115}],"metadata":{"title":"Activepieces","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#workflow-automation","#app-marathon-batch-rattrapage-1"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=Workflow+Automation&app=activepieces"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,85]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1gxtkvo","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#---frontmatter---","lines":[1,10],"size":239,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jt52dt","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook","lines":[12,88],"size":2585,"outlinks":[{"title":"https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":9},{"title":"adnanh/webhook","target":"https://github.com/adnanh/webhook","line":10},{"title":"Webhooks","target":"cat-webhooks","line":13},{"title":"app-activepieces","target":"app-activepieces","line":54},{"title":"app-hook0","target":"app-hook0","line":54},{"title":"app-n8n","target":"app-n8n","line":54},{"title":"GitHub https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":68},{"title":"Site officiel","target":"https://github.com/adnanh/webhook","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Webhooks&app=adnanh-webhook","line":70},{"title":"Webhooks","target":"cat-webhooks","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tugmfi","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#{1}","lines":[14,15],"size":157,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"cli4bo","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📋 Informations Générales","lines":[16,25],"size":323,"outlinks":[{"title":"https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":5},{"title":"adnanh/webhook","target":"https://github.com/adnanh/webhook","line":6},{"title":"Webhooks","target":"cat-webhooks","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19is74x","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📋 Informations Générales#{1}","lines":[18,25],"size":291,"outlinks":[{"title":"https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":3},{"title":"adnanh/webhook","target":"https://github.com/adnanh/webhook","line":4},{"title":"Webhooks","target":"cat-webhooks","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"123oopx","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📝 Description","lines":[26,33],"size":440,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jud924","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📝 Description#{1}","lines":[28,33],"size":419,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1bnrvzo","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation","lines":[34,61],"size":657,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qrafg1","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":635,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ev05wp","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":600,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1noymry","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives","lines":[62,69],"size":235,"outlinks":[{"title":"app-activepieces","target":"app-activepieces","line":4},{"title":"app-hook0","target":"app-hook0","line":4},{"title":"app-n8n","target":"app-n8n","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1cw38i3","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Open Source","lines":[64,66],"size":106,"outlinks":[{"title":"app-activepieces","target":"app-activepieces","line":2},{"title":"app-hook0","target":"app-hook0","line":2},{"title":"app-n8n","target":"app-n8n","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dydb8y","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":89,"outlinks":[{"title":"app-activepieces","target":"app-activepieces","line":1},{"title":"app-hook0","target":"app-hook0","line":1},{"title":"app-n8n","target":"app-n8n","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mvupiy","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)","lines":[67,69],"size":106,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6s5hmr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)#{1}","lines":[68,69],"size":61,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"tg3yd5","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📚 Ressources","lines":[77,82],"size":231,"outlinks":[{"title":"GitHub https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":3},{"title":"Site officiel","target":"https://github.com/adnanh/webhook","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Webhooks&app=adnanh-webhook","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1n5osko","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#📚 Ressources#{1}","lines":[79,82],"size":211,"outlinks":[{"title":"GitHub https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":1},{"title":"Site officiel","target":"https://github.com/adnanh/webhook","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Webhooks&app=adnanh-webhook","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ug5wnt","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#Pages Liées","lines":[83,88],"size":195,"outlinks":[{"title":"Webhooks","target":"cat-webhooks","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11hobjk","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md#🔗 Webhook#Pages Liées#{1}","lines":[84,88],"size":179,"outlinks":[{"title":"Webhooks","target":"cat-webhooks","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-adnanh-webhook.md": {"path":"Catalogue-Self-Hosted/apps/app-adnanh-webhook.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"ppbix2","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780926590931,"size":2888,"at":1780929441607,"hash":"ppbix2"},"blocks":{"#---frontmatter---":[1,10],"#🔗 Webhook":[12,88],"#🔗 Webhook#{1}":[14,15],"#🔗 Webhook#📋 Informations Générales":[16,25],"#🔗 Webhook#📋 Informations Générales#{1}":[18,25],"#🔗 Webhook#📝 Description":[26,33],"#🔗 Webhook#📝 Description#{1}":[28,33],"#🔗 Webhook#🚀 Installation":[34,61],"#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)":[36,61],"#🔗 Webhook#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#🔗 Webhook#🔄 Alternatives":[62,69],"#🔗 Webhook#🔄 Alternatives#Open Source":[64,66],"#🔗 Webhook#🔄 Alternatives#Open Source#{1}":[65,66],"#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)":[67,69],"#🔗 Webhook#🔄 Alternatives#Propriétaires (ce que Webhook remplace)#{1}":[68,69],"#🔗 Webhook#🔐 Sécurité":[70,76],"#🔗 Webhook#🔐 Sécurité#{1}":[72,76],"#🔗 Webhook#📚 Ressources":[77,82],"#🔗 Webhook#📚 Ressources#{1}":[79,82],"#🔗 Webhook#Pages Liées":[83,88],"#🔗 Webhook#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":20},{"title":"adnanh/webhook","target":"https://github.com/adnanh/webhook","line":21},{"title":"Webhooks","target":"cat-webhooks","line":24},{"title":"app-activepieces","target":"app-activepieces","line":65},{"title":"app-hook0","target":"app-hook0","line":65},{"title":"app-n8n","target":"app-n8n","line":65},{"title":"GitHub https://github.com/adnanh/webhook","target":"https://github.com/adnanh/webhook","line":79},{"title":"Site officiel","target":"https://github.com/adnanh/webhook","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Webhooks&app=adnanh-webhook","line":81},{"title":"Webhooks","target":"cat-webhooks","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"metadata":{"title":"Webhook","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#webhooks","#app-marathon3-final-context"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=Webhooks&app=adnanh-webhook"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ls3ty1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#---frontmatter---","lines":[1,10],"size":234,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"agzx5m","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail","lines":[12,88],"size":2563,"outlinks":[{"title":"https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":9},{"title":"eitch/airtrail","target":"https://github.com/eitch/airtrail","line":10},{"title":"Flights","target":"cat-flights","line":13},{"title":"app-jetlog","target":"app-jetlog","line":54},{"title":"GitHub https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":68},{"title":"Site officiel","target":"https://github.com/eitch/airtrail","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Flights&app=airtrail","line":70},{"title":"Flights","target":"cat-flights","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16cuy1l","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#{1}","lines":[14,15],"size":175,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bqd9xt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📋 Informations Générales","lines":[16,25],"size":329,"outlinks":[{"title":"https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":5},{"title":"eitch/airtrail","target":"https://github.com/eitch/airtrail","line":6},{"title":"Flights","target":"cat-flights","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"evdu3p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📋 Informations Générales#{1}","lines":[18,25],"size":297,"outlinks":[{"title":"https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":3},{"title":"eitch/airtrail","target":"https://github.com/eitch/airtrail","line":4},{"title":"Flights","target":"cat-flights","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1sokn00","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📝 Description","lines":[26,33],"size":458,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11fppbn","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📝 Description#{1}","lines":[28,33],"size":437,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"7i57u8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation","lines":[34,61],"size":621,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1oqvv15","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":599,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ocnyu4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":564,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"8sr8cj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives","lines":[62,69],"size":216,"outlinks":[{"title":"app-jetlog","target":"app-jetlog","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wke7io","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Open Source","lines":[64,66],"size":72,"outlinks":[{"title":"app-jetlog","target":"app-jetlog","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1rqgqlf","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":55,"outlinks":[{"title":"app-jetlog","target":"app-jetlog","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lcwdtu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)","lines":[67,69],"size":121,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10105d3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)#{1}","lines":[68,69],"size":75,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1kxp69y","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📚 Ressources","lines":[77,82],"size":224,"outlinks":[{"title":"GitHub https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":3},{"title":"Site officiel","target":"https://github.com/eitch/airtrail","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Flights&app=airtrail","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"q7xm8p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#📚 Ressources#{1}","lines":[79,82],"size":204,"outlinks":[{"title":"GitHub https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":1},{"title":"Site officiel","target":"https://github.com/eitch/airtrail","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Flights&app=airtrail","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4p4ejs","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#Pages Liées","lines":[83,88],"size":192,"outlinks":[{"title":"Flights","target":"cat-flights","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"112ir8n","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-airtrail.md#✈️ AirTrail#Pages Liées#{1}","lines":[84,88],"size":176,"outlinks":[{"title":"Flights","target":"cat-flights","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-airtrail.md": {"path":"Catalogue-Self-Hosted/apps/app-airtrail.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1e9juhw","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780928026895,"size":2861,"at":1780929441825,"hash":"1e9juhw"},"blocks":{"#---frontmatter---":[1,10],"#✈️ AirTrail":[12,88],"#✈️ AirTrail#{1}":[14,15],"#✈️ AirTrail#📋 Informations Générales":[16,25],"#✈️ AirTrail#📋 Informations Générales#{1}":[18,25],"#✈️ AirTrail#📝 Description":[26,33],"#✈️ AirTrail#📝 Description#{1}":[28,33],"#✈️ AirTrail#🚀 Installation":[34,61],"#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)":[36,61],"#✈️ AirTrail#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#✈️ AirTrail#🔄 Alternatives":[62,69],"#✈️ AirTrail#🔄 Alternatives#Open Source":[64,66],"#✈️ AirTrail#🔄 Alternatives#Open Source#{1}":[65,66],"#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)":[67,69],"#✈️ AirTrail#🔄 Alternatives#Propriétaires (ce que AirTrail remplace)#{1}":[68,69],"#✈️ AirTrail#🔐 Sécurité":[70,76],"#✈️ AirTrail#🔐 Sécurité#{1}":[72,76],"#✈️ AirTrail#📚 Ressources":[77,82],"#✈️ AirTrail#📚 Ressources#{1}":[79,82],"#✈️ AirTrail#Pages Liées":[83,88],"#✈️ AirTrail#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":20},{"title":"eitch/airtrail","target":"https://github.com/eitch/airtrail","line":21},{"title":"Flights","target":"cat-flights","line":24},{"title":"app-jetlog","target":"app-jetlog","line":65},{"title":"GitHub https://github.com/eitch/airtrail","target":"https://github.com/eitch/airtrail","line":79},{"title":"Site officiel","target":"https://github.com/eitch/airtrail","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Flights&app=airtrail","line":81},{"title":"Flights","target":"cat-flights","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"metadata":{"title":"AirTrail","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#flights","#app-marathon3-final-context"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=Flights&app=airtrail"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11yk70a","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#---frontmatter---","lines":[1,10],"size":252,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"7mk5vk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow","lines":[12,69],"size":1873,"outlinks":[{"title":"code.whatever.social","target":"https://github.com/httpjamesm/AnonymousOverflow","line":9},{"title":"httpjamesm/AnonymousOverflow","target":"https://github.com/httpjamesm/AnonymousOverflow","line":10},{"title":"Front End","target":"cat-front-end","line":14},{"title":"app-cr-nmaster","target":"app-cr-nmaster","line":39},{"title":"app-nitter","target":"app-nitter","line":40},{"title":"Documentation","target":"https://github.com/httpjamesm/AnonymousOverflow#readme","line":51},{"title":"GitHub","target":"https://github.com/httpjamesm/AnonymousOverflow","line":52},{"title":"cat-front-end","target":"cat-front-end","line":55},{"title":"app-nitter","target":"app-nitter","line":56},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":57}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"k34ud6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#{1}","lines":[14,15],"size":88,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"y0oat8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📋 Informations Générales","lines":[16,26],"size":388,"outlinks":[{"title":"code.whatever.social","target":"https://github.com/httpjamesm/AnonymousOverflow","line":5},{"title":"httpjamesm/AnonymousOverflow","target":"https://github.com/httpjamesm/AnonymousOverflow","line":6},{"title":"Front End","target":"cat-front-end","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ta4h7e","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📋 Informations Générales#{1}","lines":[18,26],"size":358,"outlinks":[{"title":"code.whatever.social","target":"https://github.com/httpjamesm/AnonymousOverflow","line":3},{"title":"httpjamesm/AnonymousOverflow","target":"https://github.com/httpjamesm/AnonymousOverflow","line":4},{"title":"Front End","target":"cat-front-end","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gt2f62","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📝 Description","lines":[27,30],"size":441,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"awoeca","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📝 Description#{1}","lines":[29,30],"size":422,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6ocf7g","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation","lines":[31,46],"size":332,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"e31bwb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)","lines":[33,46],"size":312,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"csnjog","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,46],"size":279,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1grpci4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives","lines":[47,56],"size":221,"outlinks":[{"title":"app-cr-nmaster","target":"app-cr-nmaster","line":4},{"title":"app-nitter","target":"app-nitter","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"tkajo5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source","lines":[49,52],"size":93,"outlinks":[{"title":"app-cr-nmaster","target":"app-cr-nmaster","line":2},{"title":"app-nitter","target":"app-nitter","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dr3z1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{1}","lines":[50,50],"size":38,"outlinks":[{"title":"app-cr-nmaster","target":"app-cr-nmaster","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fgmn32","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{2}","lines":[51,52],"size":38,"outlinks":[{"title":"app-nitter","target":"app-nitter","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o8j7z3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires","lines":[53,56],"size":107,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5fe87z","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{1}","lines":[54,54],"size":54,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10y3zjr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{2}","lines":[55,56],"size":34,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ffatc9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité","lines":[57,60],"size":76,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"79glmg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité#{1}","lines":[58,58],"size":22,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ajhbqu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#🔐 Sécurité#{2}","lines":[59,60],"size":38,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pecjgg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources","lines":[61,64],"size":151,"outlinks":[{"title":"Documentation","target":"https://github.com/httpjamesm/AnonymousOverflow#readme","line":2},{"title":"GitHub","target":"https://github.com/httpjamesm/AnonymousOverflow","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"p1g6at","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources#{1}","lines":[62,62],"size":73,"outlinks":[{"title":"Documentation","target":"https://github.com/httpjamesm/AnonymousOverflow#readme","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"irasjb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#📚 Ressources#{2}","lines":[63,64],"size":60,"outlinks":[{"title":"GitHub","target":"https://github.com/httpjamesm/AnonymousOverflow","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gafvsy","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées","lines":[65,69],"size":145,"outlinks":[{"title":"cat-front-end","target":"cat-front-end","line":2},{"title":"app-nitter","target":"app-nitter","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3f7kff","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{1}","lines":[66,66],"size":41,"outlinks":[{"title":"cat-front-end","target":"cat-front-end","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qevf2f","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{2}","lines":[67,67],"size":38,"outlinks":[{"title":"app-nitter","target":"app-nitter","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md#🥷 AnonymousOverflow#Pages Liées#{3}","lines":[68,69],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-anonymousoverflow.md": {"path":"Catalogue-Self-Hosted/apps/app-anonymousoverflow.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"2qswun","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780926197130,"size":2177,"at":1780929441825,"hash":"2qswun"},"blocks":{"#---frontmatter---":[1,10],"#🥷 AnonymousOverflow":[12,69],"#🥷 AnonymousOverflow#{1}":[14,15],"#🥷 AnonymousOverflow#📋 Informations Générales":[16,26],"#🥷 AnonymousOverflow#📋 Informations Générales#{1}":[18,26],"#🥷 AnonymousOverflow#📝 Description":[27,30],"#🥷 AnonymousOverflow#📝 Description#{1}":[29,30],"#🥷 AnonymousOverflow#🚀 Installation":[31,46],"#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)":[33,46],"#🥷 AnonymousOverflow#🚀 Installation#Docker Compose (recommandé)#{1}":[35,46],"#🥷 AnonymousOverflow#🔄 Alternatives":[47,56],"#🥷 AnonymousOverflow#🔄 Alternatives#Open Source":[49,52],"#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{1}":[50,50],"#🥷 AnonymousOverflow#🔄 Alternatives#Open Source#{2}":[51,52],"#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires":[53,56],"#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{1}":[54,54],"#🥷 AnonymousOverflow#🔄 Alternatives#Propriétaires#{2}":[55,56],"#🥷 AnonymousOverflow#🔐 Sécurité":[57,60],"#🥷 AnonymousOverflow#🔐 Sécurité#{1}":[58,58],"#🥷 AnonymousOverflow#🔐 Sécurité#{2}":[59,60],"#🥷 AnonymousOverflow#📚 Ressources":[61,64],"#🥷 AnonymousOverflow#📚 Ressources#{1}":[62,62],"#🥷 AnonymousOverflow#📚 Ressources#{2}":[63,64],"#🥷 AnonymousOverflow#Pages Liées":[65,69],"#🥷 AnonymousOverflow#Pages Liées#{1}":[66,66],"#🥷 AnonymousOverflow#Pages Liées#{2}":[67,67],"#🥷 AnonymousOverflow#Pages Liées#{3}":[68,69]},"outlinks":[{"title":"code.whatever.social","target":"https://github.com/httpjamesm/AnonymousOverflow","line":20},{"title":"httpjamesm/AnonymousOverflow","target":"https://github.com/httpjamesm/AnonymousOverflow","line":21},{"title":"Front End","target":"cat-front-end","line":25},{"title":"app-cr-nmaster","target":"app-cr-nmaster","line":50},{"title":"app-nitter","target":"app-nitter","line":51},{"title":"Documentation","target":"https://github.com/httpjamesm/AnonymousOverflow#readme","line":62},{"title":"GitHub","target":"https://github.com/httpjamesm/AnonymousOverflow","line":63},{"title":"cat-front-end","target":"cat-front-end","line":66},{"title":"app-nitter","target":"app-nitter","line":67},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":68}],"metadata":{"title":"AnonymousOverflow","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#front-end","#app-marathon3-rattrapage-final-b"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=front-end&app=anonymous-overflow"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,45]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,36 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ehx0yu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#---frontmatter---","lines":[1,10],"size":271,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1kvpfie","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable","lines":[12,96],"size":2833,"outlinks":[{"title":"anycable.io","target":"https://anycable.io","line":9},{"title":"anycable/anycable","target":"https://github.com/anycable/anycable","line":10},{"title":"Notifications","target":"cat-notifications","line":14},{"title":"app-ntfy","target":"app-ntfy","line":63},{"title":"Documentation","target":"https://docs.anycable.io/","line":77},{"title":"GitHub","target":"https://github.com/anycable/anycable","line":78},{"title":"Benchmarks","target":"https://docs.anycable.io/benchmarks","line":79},{"title":"cat-notifications","target":"cat-notifications","line":82},{"title":"app-ntfy","target":"app-ntfy","line":83},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":84}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"17o2wqu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#{1}","lines":[14,15],"size":192,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"g810a5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📋 Informations Générales","lines":[16,26],"size":401,"outlinks":[{"title":"anycable.io","target":"https://anycable.io","line":5},{"title":"anycable/anycable","target":"https://github.com/anycable/anycable","line":6},{"title":"Notifications","target":"cat-notifications","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fcyfgj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📋 Informations Générales#{1}","lines":[18,26],"size":371,"outlinks":[{"title":"anycable.io","target":"https://anycable.io","line":3},{"title":"anycable/anycable","target":"https://github.com/anycable/anycable","line":4},{"title":"Notifications","target":"cat-notifications","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ojxud8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📝 Description","lines":[27,34],"size":676,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ui6e4d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📝 Description#{1}","lines":[29,34],"size":657,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1f768vm","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation","lines":[35,68],"size":591,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Gemfile": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"20psd9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Gemfile","lines":[37,42],"size":56,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Gemfile#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jznc6x","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Gemfile#{1}","lines":[39,42],"size":43,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Docker Compose (composants)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1j0ofua","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Docker Compose (composants)","lines":[43,68],"size":514,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Docker Compose (composants)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"46kosx","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🚀 Installation#Docker Compose (composants)#{1}","lines":[45,68],"size":481,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11ov57k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives","lines":[69,80],"size":315,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tnhpmc","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source","lines":[71,75],"size":183,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1p1l4m","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{1}","lines":[72,72],"size":49,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1i50c3n","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{2}","lines":[73,73],"size":56,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"b70t44","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Open Source#{3}","lines":[74,75],"size":60,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"37u7i9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires","lines":[76,80],"size":111,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3v9ejr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{1}","lines":[77,77],"size":29,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pyb21v","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{2}","lines":[78,78],"size":27,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xjac7h","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔄 Alternatives#Propriétaires#{3}","lines":[79,80],"size":35,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"i4sf1h","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité","lines":[81,86],"size":315,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"yz3bkt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{1}","lines":[82,82],"size":40,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19781za","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{2}","lines":[83,83],"size":99,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1h9sipr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{3}","lines":[84,84],"size":54,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1pglmoa","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#🔐 Sécurité#{4}","lines":[85,86],"size":104,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18wby4i","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources","lines":[87,91],"size":163,"outlinks":[{"title":"Documentation","target":"https://docs.anycable.io/","line":2},{"title":"GitHub","target":"https://github.com/anycable/anycable","line":3},{"title":"Benchmarks","target":"https://docs.anycable.io/benchmarks","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"k0zkhu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{1}","lines":[88,88],"size":44,"outlinks":[{"title":"Documentation","target":"https://docs.anycable.io/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"urzqrc","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{2}","lines":[89,89],"size":48,"outlinks":[{"title":"GitHub","target":"https://github.com/anycable/anycable","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"52sedq","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#📚 Ressources#{3}","lines":[90,91],"size":52,"outlinks":[{"title":"Benchmarks","target":"https://docs.anycable.io/benchmarks","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o62z83","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées","lines":[92,96],"size":158,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":2},{"title":"app-ntfy","target":"app-ntfy","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4rwgp4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{1}","lines":[93,93],"size":49,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1s5onjm","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{2}","lines":[94,94],"size":43,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-anycable.md#🔔 AnyCable#Pages Liées#{3}","lines":[95,96],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-anycable.md": {"path":"Catalogue-Self-Hosted/apps/app-anycable.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"rajw25","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780923107943,"size":3174,"at":1780929441825,"hash":"rajw25"},"blocks":{"#---frontmatter---":[1,10],"#🔔 AnyCable":[12,96],"#🔔 AnyCable#{1}":[14,15],"#🔔 AnyCable#📋 Informations Générales":[16,26],"#🔔 AnyCable#📋 Informations Générales#{1}":[18,26],"#🔔 AnyCable#📝 Description":[27,34],"#🔔 AnyCable#📝 Description#{1}":[29,34],"#🔔 AnyCable#🚀 Installation":[35,68],"#🔔 AnyCable#🚀 Installation#Gemfile":[37,42],"#🔔 AnyCable#🚀 Installation#Gemfile#{1}":[39,42],"#🔔 AnyCable#🚀 Installation#Docker Compose (composants)":[43,68],"#🔔 AnyCable#🚀 Installation#Docker Compose (composants)#{1}":[45,68],"#🔔 AnyCable#🔄 Alternatives":[69,80],"#🔔 AnyCable#🔄 Alternatives#Open Source":[71,75],"#🔔 AnyCable#🔄 Alternatives#Open Source#{1}":[72,72],"#🔔 AnyCable#🔄 Alternatives#Open Source#{2}":[73,73],"#🔔 AnyCable#🔄 Alternatives#Open Source#{3}":[74,75],"#🔔 AnyCable#🔄 Alternatives#Propriétaires":[76,80],"#🔔 AnyCable#🔄 Alternatives#Propriétaires#{1}":[77,77],"#🔔 AnyCable#🔄 Alternatives#Propriétaires#{2}":[78,78],"#🔔 AnyCable#🔄 Alternatives#Propriétaires#{3}":[79,80],"#🔔 AnyCable#🔐 Sécurité":[81,86],"#🔔 AnyCable#🔐 Sécurité#{1}":[82,82],"#🔔 AnyCable#🔐 Sécurité#{2}":[83,83],"#🔔 AnyCable#🔐 Sécurité#{3}":[84,84],"#🔔 AnyCable#🔐 Sécurité#{4}":[85,86],"#🔔 AnyCable#📚 Ressources":[87,91],"#🔔 AnyCable#📚 Ressources#{1}":[88,88],"#🔔 AnyCable#📚 Ressources#{2}":[89,89],"#🔔 AnyCable#📚 Ressources#{3}":[90,91],"#🔔 AnyCable#Pages Liées":[92,96],"#🔔 AnyCable#Pages Liées#{1}":[93,93],"#🔔 AnyCable#Pages Liées#{2}":[94,94],"#🔔 AnyCable#Pages Liées#{3}":[95,96]},"outlinks":[{"title":"anycable.io","target":"https://anycable.io","line":20},{"title":"anycable/anycable","target":"https://github.com/anycable/anycable","line":21},{"title":"Notifications","target":"cat-notifications","line":25},{"title":"app-ntfy","target":"app-ntfy","line":74},{"title":"Documentation","target":"https://docs.anycable.io/","line":88},{"title":"GitHub","target":"https://github.com/anycable/anycable","line":89},{"title":"Benchmarks","target":"https://docs.anycable.io/benchmarks","line":90},{"title":"cat-notifications","target":"cat-notifications","line":93},{"title":"app-ntfy","target":"app-ntfy","line":94},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":95}],"metadata":{"title":"AnyCable","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#notifications","#websockets","#real-time","#app-marathon-batch-rattrapage-3"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=Notifications","https://anycable.io"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[39,41],[45,67]]},
|
||||
@@ -0,0 +1,32 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"e04s9o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#---frontmatter---","lines":[1,10],"size":257,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3e58qi","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer","lines":[12,95],"size":2493,"outlinks":[{"title":"answer.apache.org","target":"https://answer.apache.org/","line":9},{"title":"apache/answer","target":"https://github.com/apache/answer","line":10},{"title":"Forums","target":"cat-forums","line":14},{"title":"app-discourse","target":"app-discourse","line":62},{"title":"app-flarum","target":"app-flarum","line":63},{"title":"Documentation Apache Answer","target":"https://answer.apache.org/docs/","line":77},{"title":"Plugin Hub","target":"https://github.com/apache/answer-plugins","line":78},{"title":"cat-forums","target":"cat-forums","line":81},{"title":"app-discourse","target":"app-discourse","line":82},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":83}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"87jv6j","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#{1}","lines":[14,15],"size":97,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1m5b5va","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📋 Informations Générales","lines":[16,26],"size":335,"outlinks":[{"title":"answer.apache.org","target":"https://answer.apache.org/","line":5},{"title":"apache/answer","target":"https://github.com/apache/answer","line":6},{"title":"Forums","target":"cat-forums","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lm6fm8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📋 Informations Générales#{1}","lines":[18,26],"size":305,"outlinks":[{"title":"answer.apache.org","target":"https://answer.apache.org/","line":3},{"title":"apache/answer","target":"https://github.com/apache/answer","line":4},{"title":"Forums","target":"cat-forums","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"49jfe","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📝 Description","lines":[27,34],"size":555,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9jbxlj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📝 Description#{1}","lines":[29,34],"size":536,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ncto3o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation","lines":[35,69],"size":742,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation#Docker Compose": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ry408i","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation#Docker Compose","lines":[37,69],"size":722,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation#Docker Compose#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ivlfl5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🚀 Installation#Docker Compose#{1}","lines":[39,69],"size":702,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bh3xdt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives","lines":[70,80],"size":274,"outlinks":[{"title":"app-discourse","target":"app-discourse","line":4},{"title":"app-flarum","target":"app-flarum","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1q6c4tk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source","lines":[72,76],"size":151,"outlinks":[{"title":"app-discourse","target":"app-discourse","line":2},{"title":"app-flarum","target":"app-flarum","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jtsqxd","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{1}","lines":[73,73],"size":47,"outlinks":[{"title":"app-discourse","target":"app-discourse","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"fjz9fp","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{2}","lines":[74,74],"size":34,"outlinks":[{"title":"app-flarum","target":"app-flarum","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gp0rjg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Open Source#{3}","lines":[75,76],"size":52,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mmuk9b","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires","lines":[77,80],"size":102,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hh7y62","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires#{1}","lines":[78,78],"size":44,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jdni1m","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔄 Alternatives#Propriétaires#{2}","lines":[79,80],"size":39,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16woahp","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité","lines":[81,86],"size":179,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"17j8nt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{1}","lines":[82,82],"size":52,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xoll0y","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{2}","lines":[83,83],"size":37,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jlgtg3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{3}","lines":[84,84],"size":42,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xplsfw","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#🔐 Sécurité#{4}","lines":[85,86],"size":30,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1sbtlo9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources","lines":[87,90],"size":139,"outlinks":[{"title":"Documentation Apache Answer","target":"https://answer.apache.org/docs/","line":2},{"title":"Plugin Hub","target":"https://github.com/apache/answer-plugins","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5m85w4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources#{1}","lines":[88,88],"size":64,"outlinks":[{"title":"Documentation Apache Answer","target":"https://answer.apache.org/docs/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"l2z18o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#📚 Ressources#{2}","lines":[89,90],"size":57,"outlinks":[{"title":"Plugin Hub","target":"https://github.com/apache/answer-plugins","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1758h24","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées","lines":[91,95],"size":145,"outlinks":[{"title":"cat-forums","target":"cat-forums","line":2},{"title":"app-discourse","target":"app-discourse","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jz5h7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{1}","lines":[92,92],"size":35,"outlinks":[{"title":"cat-forums","target":"cat-forums","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1lehib2","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{2}","lines":[93,93],"size":44,"outlinks":[{"title":"app-discourse","target":"app-discourse","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-apache-answer.md#💬 Apache Answer#Pages Liées#{3}","lines":[94,95],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-apache-answer.md": {"path":"Catalogue-Self-Hosted/apps/app-apache-answer.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1fqhte0","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780924355025,"size":2817,"at":1780929441825,"hash":"1fqhte0"},"blocks":{"#---frontmatter---":[1,10],"#💬 Apache Answer":[12,95],"#💬 Apache Answer#{1}":[14,15],"#💬 Apache Answer#📋 Informations Générales":[16,26],"#💬 Apache Answer#📋 Informations Générales#{1}":[18,26],"#💬 Apache Answer#📝 Description":[27,34],"#💬 Apache Answer#📝 Description#{1}":[29,34],"#💬 Apache Answer#🚀 Installation":[35,69],"#💬 Apache Answer#🚀 Installation#Docker Compose":[37,69],"#💬 Apache Answer#🚀 Installation#Docker Compose#{1}":[39,69],"#💬 Apache Answer#🔄 Alternatives":[70,80],"#💬 Apache Answer#🔄 Alternatives#Open Source":[72,76],"#💬 Apache Answer#🔄 Alternatives#Open Source#{1}":[73,73],"#💬 Apache Answer#🔄 Alternatives#Open Source#{2}":[74,74],"#💬 Apache Answer#🔄 Alternatives#Open Source#{3}":[75,76],"#💬 Apache Answer#🔄 Alternatives#Propriétaires":[77,80],"#💬 Apache Answer#🔄 Alternatives#Propriétaires#{1}":[78,78],"#💬 Apache Answer#🔄 Alternatives#Propriétaires#{2}":[79,80],"#💬 Apache Answer#🔐 Sécurité":[81,86],"#💬 Apache Answer#🔐 Sécurité#{1}":[82,82],"#💬 Apache Answer#🔐 Sécurité#{2}":[83,83],"#💬 Apache Answer#🔐 Sécurité#{3}":[84,84],"#💬 Apache Answer#🔐 Sécurité#{4}":[85,86],"#💬 Apache Answer#📚 Ressources":[87,90],"#💬 Apache Answer#📚 Ressources#{1}":[88,88],"#💬 Apache Answer#📚 Ressources#{2}":[89,90],"#💬 Apache Answer#Pages Liées":[91,95],"#💬 Apache Answer#Pages Liées#{1}":[92,92],"#💬 Apache Answer#Pages Liées#{2}":[93,93],"#💬 Apache Answer#Pages Liées#{3}":[94,95]},"outlinks":[{"title":"answer.apache.org","target":"https://answer.apache.org/","line":20},{"title":"apache/answer","target":"https://github.com/apache/answer","line":21},{"title":"Forums","target":"cat-forums","line":25},{"title":"app-discourse","target":"app-discourse","line":73},{"title":"app-flarum","target":"app-flarum","line":74},{"title":"Documentation Apache Answer","target":"https://answer.apache.org/docs/","line":88},{"title":"Plugin Hub","target":"https://github.com/apache/answer-plugins","line":89},{"title":"cat-forums","target":"cat-forums","line":92},{"title":"app-discourse","target":"app-discourse","line":93},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":94}],"metadata":{"title":"Apache Answer","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#forums","#go","#qa","#self-hosted","#app-marathon3-batch-a"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=Forums","https://answer.apache.org/"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[39,68]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,35 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hoykx","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#---frontmatter---","lines":[1,10],"size":267,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3eni8x","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise","lines":[12,96],"size":2952,"outlinks":[{"title":"github.com/caronc/apprise","target":"https://github.com/caronc/apprise","line":9},{"title":"caronc/apprise","target":"https://github.com/caronc/apprise","line":10},{"title":"Notifications","target":"cat-notifications","line":14},{"title":"app-ntfy","target":"app-ntfy","line":62},{"title":"app-gotify","target":"app-gotify","line":63},{"title":"app-argus","target":"app-argus","line":64},{"title":"Documentation","target":"https://github.com/caronc/apprise/wiki","line":76},{"title":"Liste des services supportés","target":"https://github.com/caronc/apprise#supported-notifications","line":77},{"title":"API REST","target":"https://github.com/caronc/apprise-api","line":78},{"title":"cat-notifications","target":"cat-notifications","line":81},{"title":"app-ntfy","target":"app-ntfy","line":82},{"title":"app-gotify","target":"app-gotify","line":83},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":84}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ixmg7q","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#{1}","lines":[14,15],"size":129,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1vpqm48","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📋 Informations Générales","lines":[16,26],"size":350,"outlinks":[{"title":"github.com/caronc/apprise","target":"https://github.com/caronc/apprise","line":5},{"title":"caronc/apprise","target":"https://github.com/caronc/apprise","line":6},{"title":"Notifications","target":"cat-notifications","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3larav","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📋 Informations Générales#{1}","lines":[18,26],"size":320,"outlinks":[{"title":"github.com/caronc/apprise","target":"https://github.com/caronc/apprise","line":3},{"title":"caronc/apprise","target":"https://github.com/caronc/apprise","line":4},{"title":"Notifications","target":"cat-notifications","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"iuhgk2","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📝 Description","lines":[27,34],"size":707,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"v92da","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📝 Description#{1}","lines":[29,34],"size":688,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"l98cic","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation","lines":[35,69],"size":752,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wck3mm","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)","lines":[37,59],"size":520,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"fblq84","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[39,59],"size":487,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Utilisation CLI": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1y1ot8u","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Utilisation CLI","lines":[60,69],"size":211,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Utilisation CLI#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1o2bz4p","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🚀 Installation#Utilisation CLI#{1}","lines":[62,69],"size":190,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xhcw6d","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives","lines":[70,80],"size":278,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":4},{"title":"app-gotify","target":"app-gotify","line":5},{"title":"app-argus","target":"app-argus","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"uuxai7","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source","lines":[72,76],"size":146,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":2},{"title":"app-gotify","target":"app-gotify","line":3},{"title":"app-argus","target":"app-argus","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19oz9sv","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{1}","lines":[73,73],"size":36,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14pneh0","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{2}","lines":[74,74],"size":49,"outlinks":[{"title":"app-gotify","target":"app-gotify","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1wwn7yu","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Open Source#{3}","lines":[75,76],"size":43,"outlinks":[{"title":"app-argus","target":"app-argus","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"naf4cu","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires","lines":[77,80],"size":111,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14kwcuf","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires#{1}","lines":[78,78],"size":53,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1r838wr","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔄 Alternatives#Propriétaires#{2}","lines":[79,80],"size":39,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1x2vo6g","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité","lines":[81,85],"size":322,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ebl8wv","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{1}","lines":[82,82],"size":98,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14j55v9","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{2}","lines":[83,83],"size":114,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1wi4uxc","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#🔐 Sécurité#{3}","lines":[84,85],"size":93,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"p8nb8d","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources","lines":[86,90],"size":219,"outlinks":[{"title":"Documentation","target":"https://github.com/caronc/apprise/wiki","line":2},{"title":"Liste des services supportés","target":"https://github.com/caronc/apprise#supported-notifications","line":3},{"title":"API REST","target":"https://github.com/caronc/apprise-api","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9djvms","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{1}","lines":[87,87],"size":57,"outlinks":[{"title":"Documentation","target":"https://github.com/caronc/apprise/wiki","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"m6hald","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{2}","lines":[88,88],"size":91,"outlinks":[{"title":"Liste des services supportés","target":"https://github.com/caronc/apprise#supported-notifications","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jsr6i5","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#📚 Ressources#{3}","lines":[89,90],"size":52,"outlinks":[{"title":"API REST","target":"https://github.com/caronc/apprise-api","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1f9cphh","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées","lines":[91,96],"size":174,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":2},{"title":"app-ntfy","target":"app-ntfy","line":3},{"title":"app-gotify","target":"app-gotify","line":4},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4rwgp4","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{1}","lines":[92,92],"size":49,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jzftpa","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{2}","lines":[93,93],"size":28,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"95gssh","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{3}","lines":[94,94],"size":30,"outlinks":[{"title":"app-gotify","target":"app-gotify","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441435},"key":"Catalogue-Self-Hosted/apps/app-apprise.md#🔔 Apprise#Pages Liées#{4}","lines":[95,96],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-apprise.md": {"path":"Catalogue-Self-Hosted/apps/app-apprise.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"11wh261","at":1780929441435},"class_name":"SmartSource","last_import":{"mtime":1780922972044,"size":3289,"at":1780929441607,"hash":"11wh261"},"blocks":{"#---frontmatter---":[1,10],"#🔔 Apprise":[12,96],"#🔔 Apprise#{1}":[14,15],"#🔔 Apprise#📋 Informations Générales":[16,26],"#🔔 Apprise#📋 Informations Générales#{1}":[18,26],"#🔔 Apprise#📝 Description":[27,34],"#🔔 Apprise#📝 Description#{1}":[29,34],"#🔔 Apprise#🚀 Installation":[35,69],"#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)":[37,59],"#🔔 Apprise#🚀 Installation#Docker Compose (recommandé)#{1}":[39,59],"#🔔 Apprise#🚀 Installation#Utilisation CLI":[60,69],"#🔔 Apprise#🚀 Installation#Utilisation CLI#{1}":[62,69],"#🔔 Apprise#🔄 Alternatives":[70,80],"#🔔 Apprise#🔄 Alternatives#Open Source":[72,76],"#🔔 Apprise#🔄 Alternatives#Open Source#{1}":[73,73],"#🔔 Apprise#🔄 Alternatives#Open Source#{2}":[74,74],"#🔔 Apprise#🔄 Alternatives#Open Source#{3}":[75,76],"#🔔 Apprise#🔄 Alternatives#Propriétaires":[77,80],"#🔔 Apprise#🔄 Alternatives#Propriétaires#{1}":[78,78],"#🔔 Apprise#🔄 Alternatives#Propriétaires#{2}":[79,80],"#🔔 Apprise#🔐 Sécurité":[81,85],"#🔔 Apprise#🔐 Sécurité#{1}":[82,82],"#🔔 Apprise#🔐 Sécurité#{2}":[83,83],"#🔔 Apprise#🔐 Sécurité#{3}":[84,85],"#🔔 Apprise#📚 Ressources":[86,90],"#🔔 Apprise#📚 Ressources#{1}":[87,87],"#🔔 Apprise#📚 Ressources#{2}":[88,88],"#🔔 Apprise#📚 Ressources#{3}":[89,90],"#🔔 Apprise#Pages Liées":[91,96],"#🔔 Apprise#Pages Liées#{1}":[92,92],"#🔔 Apprise#Pages Liées#{2}":[93,93],"#🔔 Apprise#Pages Liées#{3}":[94,94],"#🔔 Apprise#Pages Liées#{4}":[95,96]},"outlinks":[{"title":"github.com/caronc/apprise","target":"https://github.com/caronc/apprise","line":20},{"title":"caronc/apprise","target":"https://github.com/caronc/apprise","line":21},{"title":"Notifications","target":"cat-notifications","line":25},{"title":"app-ntfy","target":"app-ntfy","line":73},{"title":"app-gotify","target":"app-gotify","line":74},{"title":"app-argus","target":"app-argus","line":75},{"title":"Documentation","target":"https://github.com/caronc/apprise/wiki","line":87},{"title":"Liste des services supportés","target":"https://github.com/caronc/apprise#supported-notifications","line":88},{"title":"API REST","target":"https://github.com/caronc/apprise-api","line":89},{"title":"cat-notifications","target":"cat-notifications","line":92},{"title":"app-ntfy","target":"app-ntfy","line":93},{"title":"app-gotify","target":"app-gotify","line":94},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":95}],"metadata":{"title":"Apprise","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#notifications","#python","#app-marathon-batch-rattrapage-3"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=Notifications","https://github.com/caronc/apprise"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[39,58],[62,68]]},
|
||||
@@ -0,0 +1,32 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mlwxke","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#---frontmatter---","lines":[1,10],"size":254,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1wtwrp8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith","lines":[12,86],"size":3157,"outlinks":[{"title":"appsmith.com","target":"https://www.appsmith.com/","line":9},{"title":"appsmithorg/appsmith","target":"https://github.com/appsmithorg/appsmith","line":10},{"title":"No-Code / Low-Code","target":"cat-no-code-low-code","line":14},{"title":"app-budibase","target":"app-budibase","line":53},{"title":"app-tooljet","target":"app-tooljet","line":54},{"title":"app-nocobase","target":"app-nocobase","line":55},{"title":"Documentation","target":"https://docs.appsmith.com/","line":66},{"title":"GitHub","target":"https://github.com/appsmithorg/appsmith","line":67},{"title":"Tutoriels vidéos","target":"https://www.appsmith.com/tutorials","line":68},{"title":"cat-no-code-low-code","target":"cat-no-code-low-code","line":71},{"title":"app-budibase","target":"app-budibase","line":72},{"title":"app-retool","target":"app-retool","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gaukiu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#{1}","lines":[14,15],"size":164,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15vibqc","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📋 Informations Générales","lines":[16,26],"size":360,"outlinks":[{"title":"appsmith.com","target":"https://www.appsmith.com/","line":5},{"title":"appsmithorg/appsmith","target":"https://github.com/appsmithorg/appsmith","line":6},{"title":"No-Code / Low-Code","target":"cat-no-code-low-code","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1pfbyo4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📋 Informations Générales#{1}","lines":[18,26],"size":330,"outlinks":[{"title":"appsmith.com","target":"https://www.appsmith.com/","line":3},{"title":"appsmithorg/appsmith","target":"https://github.com/appsmithorg/appsmith","line":4},{"title":"No-Code / Low-Code","target":"cat-no-code-low-code","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ochps6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📝 Description","lines":[27,34],"size":825,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"kxn4xu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📝 Description#{1}","lines":[29,34],"size":806,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"yemrrf","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation","lines":[35,60],"size":638,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9arpdn","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)","lines":[37,60],"size":618,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"nsgsaa","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[39,60],"size":585,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1det3q1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives","lines":[61,71],"size":482,"outlinks":[{"title":"app-budibase","target":"app-budibase","line":4},{"title":"app-tooljet","target":"app-tooljet","line":5},{"title":"app-nocobase","target":"app-nocobase","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1y4nhem","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source","lines":[63,67],"size":259,"outlinks":[{"title":"app-budibase","target":"app-budibase","line":2},{"title":"app-tooljet","target":"app-tooljet","line":3},{"title":"app-nocobase","target":"app-nocobase","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1k5bmuw","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{1}","lines":[64,64],"size":87,"outlinks":[{"title":"app-budibase","target":"app-budibase","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"x9jay9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{2}","lines":[65,65],"size":81,"outlinks":[{"title":"app-tooljet","target":"app-tooljet","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1dmvg7q","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Open Source#{3}","lines":[66,67],"size":73,"outlinks":[{"title":"app-nocobase","target":"app-nocobase","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1vex9dk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires","lines":[68,71],"size":202,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1b5iyf5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires#{1}","lines":[69,69],"size":95,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fbsnqv","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔄 Alternatives#Propriétaires#{2}","lines":[70,71],"size":88,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"968vq5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité","lines":[72,75],"size":268,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qhixio","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité#{1}","lines":[73,73],"size":103,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1575lf0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#🔐 Sécurité#{2}","lines":[74,75],"size":149,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"lynnij","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources","lines":[76,80],"size":172,"outlinks":[{"title":"Documentation","target":"https://docs.appsmith.com/","line":2},{"title":"GitHub","target":"https://github.com/appsmithorg/appsmith","line":3},{"title":"Tutoriels vidéos","target":"https://www.appsmith.com/tutorials","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"8l4te8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{1}","lines":[77,77],"size":45,"outlinks":[{"title":"Documentation","target":"https://docs.appsmith.com/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mwjoc0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{2}","lines":[78,78],"size":51,"outlinks":[{"title":"GitHub","target":"https://github.com/appsmithorg/appsmith","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18yxc9k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#📚 Ressources#{3}","lines":[79,80],"size":57,"outlinks":[{"title":"Tutoriels vidéos","target":"https://www.appsmith.com/tutorials","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1l7wbzf","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées","lines":[81,86],"size":226,"outlinks":[{"title":"cat-no-code-low-code","target":"cat-no-code-low-code","line":2},{"title":"app-budibase","target":"app-budibase","line":3},{"title":"app-retool","target":"app-retool","line":4},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tuwzc1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{1}","lines":[82,82],"size":57,"outlinks":[{"title":"cat-no-code-low-code","target":"cat-no-code-low-code","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"159pyjj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{2}","lines":[83,83],"size":53,"outlinks":[{"title":"app-budibase","target":"app-budibase","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"c6kt6r","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{3}","lines":[84,84],"size":49,"outlinks":[{"title":"app-retool","target":"app-retool","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-appsmith.md#🧩 Appsmith#Pages Liées#{4}","lines":[85,86],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-appsmith.md": {"path":"Catalogue-Self-Hosted/apps/app-appsmith.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"47tj46","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780922919732,"size":3499,"at":1780929441825,"hash":"47tj46"},"blocks":{"#---frontmatter---":[1,10],"#🧩 Appsmith":[12,86],"#🧩 Appsmith#{1}":[14,15],"#🧩 Appsmith#📋 Informations Générales":[16,26],"#🧩 Appsmith#📋 Informations Générales#{1}":[18,26],"#🧩 Appsmith#📝 Description":[27,34],"#🧩 Appsmith#📝 Description#{1}":[29,34],"#🧩 Appsmith#🚀 Installation":[35,60],"#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)":[37,60],"#🧩 Appsmith#🚀 Installation#Docker Compose (recommandé)#{1}":[39,60],"#🧩 Appsmith#🔄 Alternatives":[61,71],"#🧩 Appsmith#🔄 Alternatives#Open Source":[63,67],"#🧩 Appsmith#🔄 Alternatives#Open Source#{1}":[64,64],"#🧩 Appsmith#🔄 Alternatives#Open Source#{2}":[65,65],"#🧩 Appsmith#🔄 Alternatives#Open Source#{3}":[66,67],"#🧩 Appsmith#🔄 Alternatives#Propriétaires":[68,71],"#🧩 Appsmith#🔄 Alternatives#Propriétaires#{1}":[69,69],"#🧩 Appsmith#🔄 Alternatives#Propriétaires#{2}":[70,71],"#🧩 Appsmith#🔐 Sécurité":[72,75],"#🧩 Appsmith#🔐 Sécurité#{1}":[73,73],"#🧩 Appsmith#🔐 Sécurité#{2}":[74,75],"#🧩 Appsmith#📚 Ressources":[76,80],"#🧩 Appsmith#📚 Ressources#{1}":[77,77],"#🧩 Appsmith#📚 Ressources#{2}":[78,78],"#🧩 Appsmith#📚 Ressources#{3}":[79,80],"#🧩 Appsmith#Pages Liées":[81,86],"#🧩 Appsmith#Pages Liées#{1}":[82,82],"#🧩 Appsmith#Pages Liées#{2}":[83,83],"#🧩 Appsmith#Pages Liées#{3}":[84,84],"#🧩 Appsmith#Pages Liées#{4}":[85,86]},"outlinks":[{"title":"appsmith.com","target":"https://www.appsmith.com/","line":20},{"title":"appsmithorg/appsmith","target":"https://github.com/appsmithorg/appsmith","line":21},{"title":"No-Code / Low-Code","target":"cat-no-code-low-code","line":25},{"title":"app-budibase","target":"app-budibase","line":64},{"title":"app-tooljet","target":"app-tooljet","line":65},{"title":"app-nocobase","target":"app-nocobase","line":66},{"title":"Documentation","target":"https://docs.appsmith.com/","line":77},{"title":"GitHub","target":"https://github.com/appsmithorg/appsmith","line":78},{"title":"Tutoriels vidéos","target":"https://www.appsmith.com/tutorials","line":79},{"title":"cat-no-code-low-code","target":"cat-no-code-low-code","line":82},{"title":"app-budibase","target":"app-budibase","line":83},{"title":"app-retool","target":"app-retool","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85}],"metadata":{"title":"Appsmith","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#no-code-low-code","#app-marathon-batch-rattrapage-2"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=No-Code%20%2F%20Low%20Code&app=appsmith"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[39,59]]},
|
||||
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
File diff suppressed because one or more lines are too long
@@ -0,0 +1,40 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"l2oj4f","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#---frontmatter---","lines":[1,10],"size":243,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ew68dr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox","lines":[12,108],"size":3216,"outlinks":[{"title":"archivebox.io","target":"https://archivebox.io/","line":9},{"title":"ArchiveBox/ArchiveBox","target":"https://github.com/ArchiveBox/ArchiveBox","line":10},{"title":"Archive","target":"cat-archive","line":14},{"title":"app-project-nomad","target":"app-project-nomad","line":70},{"title":"app-ganymede","target":"app-ganymede","line":71},{"title":"Site officiel","target":"https://archivebox.io/","line":89},{"title":"GitHub","target":"https://github.com/ArchiveBox/ArchiveBox","line":90},{"title":"Documentation","target":"https://github.com/ArchiveBox/ArchiveBox/wiki","line":91},{"title":"cat-archive","target":"cat-archive","line":94},{"title":"app-wallabag","target":"app-wallabag","line":95},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":96}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18pxat1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#{1}","lines":[14,15],"size":164,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"duevj8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📋 Informations Générales","lines":[16,26],"size":329,"outlinks":[{"title":"archivebox.io","target":"https://archivebox.io/","line":5},{"title":"ArchiveBox/ArchiveBox","target":"https://github.com/ArchiveBox/ArchiveBox","line":6},{"title":"Archive","target":"cat-archive","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1d92m3s","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📋 Informations Générales#{1}","lines":[18,26],"size":299,"outlinks":[{"title":"archivebox.io","target":"https://archivebox.io/","line":3},{"title":"ArchiveBox/ArchiveBox","target":"https://github.com/ArchiveBox/ArchiveBox","line":4},{"title":"Archive","target":"cat-archive","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16edyns","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📝 Description","lines":[27,34],"size":627,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1k6sec9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📝 Description#{1}","lines":[29,34],"size":608,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"33efw6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation","lines":[35,76],"size":1017,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Docker Compose": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"e09c5k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Docker Compose","lines":[37,63],"size":683,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Docker Compose#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"41iemk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Docker Compose#{1}","lines":[39,63],"size":663,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16d428p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)","lines":[64,76],"size":313,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11xbcdp","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)#{1}","lines":[66,76],"size":283,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18dcj0h","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives","lines":[77,91],"size":423,"outlinks":[{"title":"app-project-nomad","target":"app-project-nomad","line":5},{"title":"app-ganymede","target":"app-ganymede","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1p2f9sa","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source","lines":[79,85],"size":221,"outlinks":[{"title":"app-project-nomad","target":"app-project-nomad","line":3},{"title":"app-ganymede","target":"app-ganymede","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wv8ch8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{1}","lines":[80,80],"size":37,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"108alaz","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{2}","lines":[81,81],"size":42,"outlinks":[{"title":"app-project-nomad","target":"app-project-nomad","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1n031d7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{3}","lines":[82,82],"size":34,"outlinks":[{"title":"app-ganymede","target":"app-ganymede","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"d0x5i2","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{4}","lines":[83,83],"size":36,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4hh9o1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Open Source#{5}","lines":[84,85],"size":52,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1a6ip0p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires","lines":[86,91],"size":181,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12ebtg5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{1}","lines":[87,87],"size":36,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"tc5o0i","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{2}","lines":[88,88],"size":34,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1n8cuji","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{3}","lines":[89,89],"size":51,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1y27x5d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{4}","lines":[90,91],"size":39,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16cze2r","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité","lines":[92,98],"size":307,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"17u9og","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{1}","lines":[93,93],"size":33,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1yml767","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{2}","lines":[94,94],"size":60,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xfarlb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{3}","lines":[95,95],"size":76,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1rf78u9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{4}","lines":[96,96],"size":73,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tb4hxw","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#🔐 Sécurité#{5}","lines":[97,98],"size":46,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"zle1vp","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources","lines":[99,103],"size":177,"outlinks":[{"title":"Site officiel","target":"https://archivebox.io/","line":2},{"title":"GitHub","target":"https://github.com/ArchiveBox/ArchiveBox","line":3},{"title":"Documentation","target":"https://github.com/ArchiveBox/ArchiveBox/wiki","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1wqy6vi","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{1}","lines":[100,100],"size":41,"outlinks":[{"title":"Site officiel","target":"https://archivebox.io/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1suiksr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{2}","lines":[101,101],"size":52,"outlinks":[{"title":"GitHub","target":"https://github.com/ArchiveBox/ArchiveBox","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xge0lt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#📚 Ressources#{3}","lines":[102,103],"size":65,"outlinks":[{"title":"Documentation","target":"https://github.com/ArchiveBox/ArchiveBox/wiki","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hzobeu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées","lines":[104,108],"size":148,"outlinks":[{"title":"cat-archive","target":"cat-archive","line":2},{"title":"app-wallabag","target":"app-wallabag","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wo9p68","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{1}","lines":[105,105],"size":37,"outlinks":[{"title":"cat-archive","target":"cat-archive","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fsbp8f","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{2}","lines":[106,106],"size":45,"outlinks":[{"title":"app-wallabag","target":"app-wallabag","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-archivebox.md#📦 ArchiveBox#Pages Liées#{3}","lines":[107,108],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-archivebox.md": {"path":"Catalogue-Self-Hosted/apps/app-archivebox.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1xsbk2n","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780922490478,"size":3525,"at":1780929441825,"hash":"1xsbk2n"},"blocks":{"#---frontmatter---":[1,10],"#📦 ArchiveBox":[12,108],"#📦 ArchiveBox#{1}":[14,15],"#📦 ArchiveBox#📋 Informations Générales":[16,26],"#📦 ArchiveBox#📋 Informations Générales#{1}":[18,26],"#📦 ArchiveBox#📝 Description":[27,34],"#📦 ArchiveBox#📝 Description#{1}":[29,34],"#📦 ArchiveBox#🚀 Installation":[35,76],"#📦 ArchiveBox#🚀 Installation#Docker Compose":[37,63],"#📦 ArchiveBox#🚀 Installation#Docker Compose#{1}":[39,63],"#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)":[64,76],"#📦 ArchiveBox#🚀 Installation#Utilisation (CLI ou Web)#{1}":[66,76],"#📦 ArchiveBox#🔄 Alternatives":[77,91],"#📦 ArchiveBox#🔄 Alternatives#Open Source":[79,85],"#📦 ArchiveBox#🔄 Alternatives#Open Source#{1}":[80,80],"#📦 ArchiveBox#🔄 Alternatives#Open Source#{2}":[81,81],"#📦 ArchiveBox#🔄 Alternatives#Open Source#{3}":[82,82],"#📦 ArchiveBox#🔄 Alternatives#Open Source#{4}":[83,83],"#📦 ArchiveBox#🔄 Alternatives#Open Source#{5}":[84,85],"#📦 ArchiveBox#🔄 Alternatives#Propriétaires":[86,91],"#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{1}":[87,87],"#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{2}":[88,88],"#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{3}":[89,89],"#📦 ArchiveBox#🔄 Alternatives#Propriétaires#{4}":[90,91],"#📦 ArchiveBox#🔐 Sécurité":[92,98],"#📦 ArchiveBox#🔐 Sécurité#{1}":[93,93],"#📦 ArchiveBox#🔐 Sécurité#{2}":[94,94],"#📦 ArchiveBox#🔐 Sécurité#{3}":[95,95],"#📦 ArchiveBox#🔐 Sécurité#{4}":[96,96],"#📦 ArchiveBox#🔐 Sécurité#{5}":[97,98],"#📦 ArchiveBox#📚 Ressources":[99,103],"#📦 ArchiveBox#📚 Ressources#{1}":[100,100],"#📦 ArchiveBox#📚 Ressources#{2}":[101,101],"#📦 ArchiveBox#📚 Ressources#{3}":[102,103],"#📦 ArchiveBox#Pages Liées":[104,108],"#📦 ArchiveBox#Pages Liées#{1}":[105,105],"#📦 ArchiveBox#Pages Liées#{2}":[106,106],"#📦 ArchiveBox#Pages Liées#{3}":[107,108]},"outlinks":[{"title":"archivebox.io","target":"https://archivebox.io/","line":20},{"title":"ArchiveBox/ArchiveBox","target":"https://github.com/ArchiveBox/ArchiveBox","line":21},{"title":"Archive","target":"cat-archive","line":25},{"title":"app-project-nomad","target":"app-project-nomad","line":81},{"title":"app-ganymede","target":"app-ganymede","line":82},{"title":"Site officiel","target":"https://archivebox.io/","line":100},{"title":"GitHub","target":"https://github.com/ArchiveBox/ArchiveBox","line":101},{"title":"Documentation","target":"https://github.com/ArchiveBox/ArchiveBox/wiki","line":102},{"title":"cat-archive","target":"cat-archive","line":105},{"title":"app-wallabag","target":"app-wallabag","line":106},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":107}],"task_lines":[],"tasks":{},"codeblock_ranges":[[39,62],[66,75]]},
|
||||
@@ -0,0 +1,33 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"cy3u5o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#---frontmatter---","lines":[1,10],"size":267,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ut2olx","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus","lines":[12,86],"size":2729,"outlinks":[{"title":"release-argus.io","target":"https://release-argus.io","line":9},{"title":"release-argus/Argus","target":"https://github.com/release-argus/Argus","line":10},{"title":"Notifications","target":"cat-notifications","line":14},{"title":"app-apprise","target":"app-apprise","line":52},{"title":"app-ntfy","target":"app-ntfy","line":53},{"title":"Documentation","target":"https://release-argus.io/docs","line":66},{"title":"GitHub","target":"https://github.com/release-argus/Argus","line":67},{"title":"Démo en ligne","target":"https://release-argus.io/demo","line":68},{"title":"cat-notifications","target":"cat-notifications","line":71},{"title":"app-apprise","target":"app-apprise","line":72},{"title":"app-ntfy","target":"app-ntfy","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10pjl5e","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#{1}","lines":[14,15],"size":175,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1aepx6n","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📋 Informations Générales","lines":[16,26],"size":346,"outlinks":[{"title":"release-argus.io","target":"https://release-argus.io","line":5},{"title":"release-argus/Argus","target":"https://github.com/release-argus/Argus","line":6},{"title":"Notifications","target":"cat-notifications","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wjgaag","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📋 Informations Générales#{1}","lines":[18,26],"size":316,"outlinks":[{"title":"release-argus.io","target":"https://release-argus.io","line":3},{"title":"release-argus/Argus","target":"https://github.com/release-argus/Argus","line":4},{"title":"Notifications","target":"cat-notifications","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bac2o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📝 Description","lines":[27,34],"size":771,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6fq3lk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📝 Description#{1}","lines":[29,34],"size":752,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mn4tcl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation","lines":[35,59],"size":537,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5jgtod","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation#Docker Compose (recommandé)","lines":[37,59],"size":517,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1utg1g","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[39,59],"size":484,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1e27gi0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives","lines":[60,70],"size":311,"outlinks":[{"title":"app-apprise","target":"app-apprise","line":4},{"title":"app-ntfy","target":"app-ntfy","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xhyrnl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source","lines":[62,66],"size":175,"outlinks":[{"title":"app-apprise","target":"app-apprise","line":2},{"title":"app-ntfy","target":"app-ntfy","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"135u412","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{1}","lines":[63,63],"size":60,"outlinks":[{"title":"app-apprise","target":"app-apprise","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jzftpa","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{2}","lines":[64,64],"size":28,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ywobhh","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Open Source#{3}","lines":[65,66],"size":69,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"c6p5uf","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires","lines":[67,70],"size":115,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"198lpl8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires#{1}","lines":[68,68],"size":50,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gyqttu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔄 Alternatives#Propriétaires#{2}","lines":[69,70],"size":46,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1idk97b","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité","lines":[71,75],"size":220,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1m0bv4p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{1}","lines":[72,72],"size":69,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"261abi","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{2}","lines":[73,73],"size":97,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1doxz62","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#🔐 Sécurité#{3}","lines":[74,75],"size":37,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"j1chfk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources","lines":[76,80],"size":166,"outlinks":[{"title":"Documentation","target":"https://release-argus.io/docs","line":2},{"title":"GitHub","target":"https://github.com/release-argus/Argus","line":3},{"title":"Démo en ligne","target":"https://release-argus.io/demo","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"109guek","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{1}","lines":[77,77],"size":48,"outlinks":[{"title":"Documentation","target":"https://release-argus.io/docs","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2po5uz","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{2}","lines":[78,78],"size":50,"outlinks":[{"title":"GitHub","target":"https://github.com/release-argus/Argus","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1686sph","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#📚 Ressources#{3}","lines":[79,80],"size":49,"outlinks":[{"title":"Démo en ligne","target":"https://release-argus.io/demo","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2avx0k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées","lines":[81,86],"size":184,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":2},{"title":"app-apprise","target":"app-apprise","line":3},{"title":"app-ntfy","target":"app-ntfy","line":4},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4rwgp4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{1}","lines":[82,82],"size":49,"outlinks":[{"title":"cat-notifications","target":"cat-notifications","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12mb6f6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{2}","lines":[83,83],"size":40,"outlinks":[{"title":"app-apprise","target":"app-apprise","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"jzftpa","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{3}","lines":[84,84],"size":28,"outlinks":[{"title":"app-ntfy","target":"app-ntfy","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-argus.md#🔔 Argus#Pages Liées#{4}","lines":[85,86],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-argus.md": {"path":"Catalogue-Self-Hosted/apps/app-argus.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"xw1tbj","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780923107941,"size":3082,"at":1780929441825,"hash":"xw1tbj"},"blocks":{"#---frontmatter---":[1,10],"#🔔 Argus":[12,86],"#🔔 Argus#{1}":[14,15],"#🔔 Argus#📋 Informations Générales":[16,26],"#🔔 Argus#📋 Informations Générales#{1}":[18,26],"#🔔 Argus#📝 Description":[27,34],"#🔔 Argus#📝 Description#{1}":[29,34],"#🔔 Argus#🚀 Installation":[35,59],"#🔔 Argus#🚀 Installation#Docker Compose (recommandé)":[37,59],"#🔔 Argus#🚀 Installation#Docker Compose (recommandé)#{1}":[39,59],"#🔔 Argus#🔄 Alternatives":[60,70],"#🔔 Argus#🔄 Alternatives#Open Source":[62,66],"#🔔 Argus#🔄 Alternatives#Open Source#{1}":[63,63],"#🔔 Argus#🔄 Alternatives#Open Source#{2}":[64,64],"#🔔 Argus#🔄 Alternatives#Open Source#{3}":[65,66],"#🔔 Argus#🔄 Alternatives#Propriétaires":[67,70],"#🔔 Argus#🔄 Alternatives#Propriétaires#{1}":[68,68],"#🔔 Argus#🔄 Alternatives#Propriétaires#{2}":[69,70],"#🔔 Argus#🔐 Sécurité":[71,75],"#🔔 Argus#🔐 Sécurité#{1}":[72,72],"#🔔 Argus#🔐 Sécurité#{2}":[73,73],"#🔔 Argus#🔐 Sécurité#{3}":[74,75],"#🔔 Argus#📚 Ressources":[76,80],"#🔔 Argus#📚 Ressources#{1}":[77,77],"#🔔 Argus#📚 Ressources#{2}":[78,78],"#🔔 Argus#📚 Ressources#{3}":[79,80],"#🔔 Argus#Pages Liées":[81,86],"#🔔 Argus#Pages Liées#{1}":[82,82],"#🔔 Argus#Pages Liées#{2}":[83,83],"#🔔 Argus#Pages Liées#{3}":[84,84],"#🔔 Argus#Pages Liées#{4}":[85,86]},"outlinks":[{"title":"release-argus.io","target":"https://release-argus.io","line":20},{"title":"release-argus/Argus","target":"https://github.com/release-argus/Argus","line":21},{"title":"Notifications","target":"cat-notifications","line":25},{"title":"app-apprise","target":"app-apprise","line":63},{"title":"app-ntfy","target":"app-ntfy","line":64},{"title":"Documentation","target":"https://release-argus.io/docs","line":77},{"title":"GitHub","target":"https://github.com/release-argus/Argus","line":78},{"title":"Démo en ligne","target":"https://release-argus.io/demo","line":79},{"title":"cat-notifications","target":"cat-notifications","line":82},{"title":"app-apprise","target":"app-apprise","line":83},{"title":"app-ntfy","target":"app-ntfy","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85}],"metadata":{"title":"Argus","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#notifications","#release-watcher","#app-marathon-batch-rattrapage-3"],"confidence":"medium","contested":false,"sources":["https://selfh.st/apps/?tag=Notifications","https://release-argus.io"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[39,58]]},
|
||||
@@ -0,0 +1,34 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ut4mdk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#---frontmatter---","lines":[1,10],"size":222,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tp7hyf","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema","lines":[12,79],"size":2171,"outlinks":[{"title":"asciinema.org","target":"https://asciinema.org","line":9},{"title":"asciinema/asciinema","target":"https://github.com/asciinema/asciinema","line":10},{"title":"Recording","target":"cat-recording","line":14},{"title":"cat-recording","target":"cat-recording","line":65},{"title":"app-soft-serve","target":"app-soft-serve","line":66},{"title":"app-termix","target":"app-termix","line":67}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1u64q2z","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#{1}","lines":[14,15],"size":97,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"icj7d1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📋 Informations Générales","lines":[16,26],"size":339,"outlinks":[{"title":"asciinema.org","target":"https://asciinema.org","line":5},{"title":"asciinema/asciinema","target":"https://github.com/asciinema/asciinema","line":6},{"title":"Recording","target":"cat-recording","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gyk30y","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📋 Informations Générales#{1}","lines":[18,26],"size":309,"outlinks":[{"title":"asciinema.org","target":"https://asciinema.org","line":3},{"title":"asciinema/asciinema","target":"https://github.com/asciinema/asciinema","line":4},{"title":"Recording","target":"cat-recording","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5m02mm","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📝 Description","lines":[27,30],"size":508,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"s1jgxz","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#📝 Description#{1}","lines":[29,30],"size":489,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"yxpg3d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation","lines":[31,54],"size":449,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Binaire": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1y1gz2s","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Binaire","lines":[33,45],"size":196,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Binaire#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"s9f37d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Binaire#{1}","lines":[35,45],"size":183,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"rc9jq9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)","lines":[46,54],"size":232,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"v3lv9h","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)#{1}","lines":[48,54],"size":184,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1nmvqj6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives","lines":[55,69],"size":400,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"qx69ym","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source","lines":[57,63],"size":234,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12zwtcj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{1}","lines":[58,58],"size":47,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"146g44w","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{2}","lines":[59,59],"size":40,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1byz7lt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{3}","lines":[60,60],"size":32,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"dzuo0r","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{4}","lines":[61,61],"size":56,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14oczem","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Open Source#{5}","lines":[62,63],"size":39,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"phj4tk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires","lines":[64,69],"size":145,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"f3di9k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{1}","lines":[65,65],"size":35,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14bndep","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{2}","lines":[66,66],"size":28,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1r5x86z","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{3}","lines":[67,67],"size":30,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"r6rq88","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔄 Alternatives#Propriétaires#{4}","lines":[68,69],"size":31,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1kzkrr7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité","lines":[70,74],"size":240,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gx7q49","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{1}","lines":[71,71],"size":71,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"75kiy0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{2}","lines":[72,72],"size":82,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1pe21bg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#🔐 Sécurité#{3}","lines":[73,74],"size":70,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2z9jn0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées","lines":[75,79],"size":116,"outlinks":[{"title":"cat-recording","target":"cat-recording","line":2},{"title":"app-soft-serve","target":"app-soft-serve","line":3},{"title":"app-termix","target":"app-termix","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"toslzz","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{1}","lines":[76,76],"size":41,"outlinks":[{"title":"cat-recording","target":"cat-recording","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"yofyct","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{2}","lines":[77,77],"size":31,"outlinks":[{"title":"app-soft-serve","target":"app-soft-serve","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9ktqbx","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-asciinema.md#🎬 Asciinema#Pages Liées#{3}","lines":[78,79],"size":27,"outlinks":[{"title":"app-termix","target":"app-termix","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-asciinema.md": {"path":"Catalogue-Self-Hosted/apps/app-asciinema.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1e196rs","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780924806501,"size":2467,"at":1780929441825,"hash":"1e196rs"},"blocks":{"#---frontmatter---":[1,10],"#🎬 Asciinema":[12,79],"#🎬 Asciinema#{1}":[14,15],"#🎬 Asciinema#📋 Informations Générales":[16,26],"#🎬 Asciinema#📋 Informations Générales#{1}":[18,26],"#🎬 Asciinema#📝 Description":[27,30],"#🎬 Asciinema#📝 Description#{1}":[29,30],"#🎬 Asciinema#🚀 Installation":[31,54],"#🎬 Asciinema#🚀 Installation#Binaire":[33,45],"#🎬 Asciinema#🚀 Installation#Binaire#{1}":[35,45],"#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)":[46,54],"#🎬 Asciinema#🚀 Installation#Auto-héberger asciinema-server (optionnel)#{1}":[48,54],"#🎬 Asciinema#🔄 Alternatives":[55,69],"#🎬 Asciinema#🔄 Alternatives#Open Source":[57,63],"#🎬 Asciinema#🔄 Alternatives#Open Source#{1}":[58,58],"#🎬 Asciinema#🔄 Alternatives#Open Source#{2}":[59,59],"#🎬 Asciinema#🔄 Alternatives#Open Source#{3}":[60,60],"#🎬 Asciinema#🔄 Alternatives#Open Source#{4}":[61,61],"#🎬 Asciinema#🔄 Alternatives#Open Source#{5}":[62,63],"#🎬 Asciinema#🔄 Alternatives#Propriétaires":[64,69],"#🎬 Asciinema#🔄 Alternatives#Propriétaires#{1}":[65,65],"#🎬 Asciinema#🔄 Alternatives#Propriétaires#{2}":[66,66],"#🎬 Asciinema#🔄 Alternatives#Propriétaires#{3}":[67,67],"#🎬 Asciinema#🔄 Alternatives#Propriétaires#{4}":[68,69],"#🎬 Asciinema#🔐 Sécurité":[70,74],"#🎬 Asciinema#🔐 Sécurité#{1}":[71,71],"#🎬 Asciinema#🔐 Sécurité#{2}":[72,72],"#🎬 Asciinema#🔐 Sécurité#{3}":[73,74],"#🎬 Asciinema#Pages Liées":[75,79],"#🎬 Asciinema#Pages Liées#{1}":[76,76],"#🎬 Asciinema#Pages Liées#{2}":[77,77],"#🎬 Asciinema#Pages Liées#{3}":[78,79]},"outlinks":[{"title":"asciinema.org","target":"https://asciinema.org","line":20},{"title":"asciinema/asciinema","target":"https://github.com/asciinema/asciinema","line":21},{"title":"Recording","target":"cat-recording","line":25},{"title":"cat-recording","target":"cat-recording","line":76},{"title":"app-soft-serve","target":"app-soft-serve","line":77},{"title":"app-termix","target":"app-termix","line":78}],"metadata":{"title":"Asciinema","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#recording","#app-marathon3-batch-c"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=recording&app=asciinema"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[35,44],[48,53]]},
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ghg70p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#---frontmatter---","lines":[1,10],"size":230,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"zmzuo","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto","lines":[12,88],"size":2463,"outlinks":[{"title":"https://astuto.app","target":"https://astuto.app","line":9},{"title":"astuto/astuto","target":"https://github.com/astuto/astuto","line":10},{"title":"Feedback","target":"cat-feedback","line":13},{"title":"app-fider","target":"app-fider","line":54},{"title":"GitHub https://github.com/astuto/astuto","target":"https://github.com/astuto/astuto","line":68},{"title":"Site officiel","target":"https://astuto.app","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Feedback&app=astuto","line":70},{"title":"Feedback","target":"cat-feedback","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10f57en","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#{1}","lines":[14,15],"size":148,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3elz9e","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📋 Informations Générales","lines":[16,25],"size":298,"outlinks":[{"title":"https://astuto.app","target":"https://astuto.app","line":5},{"title":"astuto/astuto","target":"https://github.com/astuto/astuto","line":6},{"title":"Feedback","target":"cat-feedback","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"8jpj0a","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📋 Informations Générales#{1}","lines":[18,25],"size":266,"outlinks":[{"title":"https://astuto.app","target":"https://astuto.app","line":3},{"title":"astuto/astuto","target":"https://github.com/astuto/astuto","line":4},{"title":"Feedback","target":"cat-feedback","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"fayp5o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📝 Description","lines":[26,33],"size":431,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bo4y81","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📝 Description#{1}","lines":[28,33],"size":410,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9r757c","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation","lines":[34,61],"size":608,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1cbncqi","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":586,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1a2zfrn","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":551,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1mvlcmi","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives","lines":[62,69],"size":231,"outlinks":[{"title":"app-fider","target":"app-fider","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ayn6n0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Open Source","lines":[64,66],"size":90,"outlinks":[{"title":"app-fider","target":"app-fider","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1g9hezk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":73,"outlinks":[{"title":"app-fider","target":"app-fider","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15t278i","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)","lines":[67,69],"size":118,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ci9vji","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)#{1}","lines":[68,69],"size":74,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14gyzr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📚 Ressources","lines":[77,82],"size":206,"outlinks":[{"title":"GitHub https://github.com/astuto/astuto","target":"https://github.com/astuto/astuto","line":3},{"title":"Site officiel","target":"https://astuto.app","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Feedback&app=astuto","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1y76yjy","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#📚 Ressources#{1}","lines":[79,82],"size":186,"outlinks":[{"title":"GitHub https://github.com/astuto/astuto","target":"https://github.com/astuto/astuto","line":1},{"title":"Site officiel","target":"https://astuto.app","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Feedback&app=astuto","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"f25czs","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#Pages Liées","lines":[83,88],"size":195,"outlinks":[{"title":"Feedback","target":"cat-feedback","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18cdfxb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-astuto.md#💬 Astuto#Pages Liées#{1}","lines":[84,88],"size":179,"outlinks":[{"title":"Feedback","target":"cat-feedback","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-astuto.md": {"path":"Catalogue-Self-Hosted/apps/app-astuto.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"14t1lmd","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780926590934,"size":2753,"at":1780929441825,"hash":"14t1lmd"},"blocks":{"#---frontmatter---":[1,10],"#💬 Astuto":[12,88],"#💬 Astuto#{1}":[14,15],"#💬 Astuto#📋 Informations Générales":[16,25],"#💬 Astuto#📋 Informations Générales#{1}":[18,25],"#💬 Astuto#📝 Description":[26,33],"#💬 Astuto#📝 Description#{1}":[28,33],"#💬 Astuto#🚀 Installation":[34,61],"#💬 Astuto#🚀 Installation#Docker Compose (recommandé)":[36,61],"#💬 Astuto#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#💬 Astuto#🔄 Alternatives":[62,69],"#💬 Astuto#🔄 Alternatives#Open Source":[64,66],"#💬 Astuto#🔄 Alternatives#Open Source#{1}":[65,66],"#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)":[67,69],"#💬 Astuto#🔄 Alternatives#Propriétaires (ce que Astuto remplace)#{1}":[68,69],"#💬 Astuto#🔐 Sécurité":[70,76],"#💬 Astuto#🔐 Sécurité#{1}":[72,76],"#💬 Astuto#📚 Ressources":[77,82],"#💬 Astuto#📚 Ressources#{1}":[79,82],"#💬 Astuto#Pages Liées":[83,88],"#💬 Astuto#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://astuto.app","target":"https://astuto.app","line":20},{"title":"astuto/astuto","target":"https://github.com/astuto/astuto","line":21},{"title":"Feedback","target":"cat-feedback","line":24},{"title":"app-fider","target":"app-fider","line":65},{"title":"GitHub https://github.com/astuto/astuto","target":"https://github.com/astuto/astuto","line":79},{"title":"Site officiel","target":"https://astuto.app","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Feedback&app=astuto","line":81},{"title":"Feedback","target":"cat-feedback","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,29 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"atfn7z","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#---frontmatter---","lines":[1,10],"size":241,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"qppgxb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS","lines":[12,84],"size":2076,"outlinks":[{"title":"atlas-cmms.com","target":"https://atlas-cmms.com/","line":9},{"title":"atlas-cmms/atlas-cmms","target":"https://github.com/atlas-cmms/atlas-cmms","line":10},{"title":"Maintenance","target":"cat-maintenance","line":14},{"title":"app-glpi","target":"app-glpi","line":54},{"title":"app-lubelogger","target":"app-lubelogger","line":55},{"title":"Documentation","target":"https://docs.atlas-cmms.com/","line":66},{"title":"GitHub","target":"https://github.com/atlas-cmms/atlas-cmms","line":67},{"title":"cat-maintenance","target":"cat-maintenance","line":70},{"title":"app-glpi","target":"app-glpi","line":71},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":72}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1oziky7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#{1}","lines":[14,15],"size":107,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"160padq","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📋 Informations Générales","lines":[16,26],"size":348,"outlinks":[{"title":"atlas-cmms.com","target":"https://atlas-cmms.com/","line":5},{"title":"atlas-cmms/atlas-cmms","target":"https://github.com/atlas-cmms/atlas-cmms","line":6},{"title":"Maintenance","target":"cat-maintenance","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18wxknm","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📋 Informations Générales#{1}","lines":[18,26],"size":318,"outlinks":[{"title":"atlas-cmms.com","target":"https://atlas-cmms.com/","line":3},{"title":"atlas-cmms/atlas-cmms","target":"https://github.com/atlas-cmms/atlas-cmms","line":4},{"title":"Maintenance","target":"cat-maintenance","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"i1vokd","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📝 Description","lines":[27,30],"size":392,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1cksf30","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📝 Description#{1}","lines":[29,30],"size":373,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"o57l1t","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation","lines":[31,61],"size":658,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"uuyt9v","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)","lines":[33,61],"size":638,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12tu2ff","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[35,61],"size":605,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1avnfsw","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives","lines":[62,71],"size":196,"outlinks":[{"title":"app-glpi","target":"app-glpi","line":4},{"title":"app-lubelogger","target":"app-lubelogger","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"mfevnd","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source","lines":[64,67],"size":90,"outlinks":[{"title":"app-glpi","target":"app-glpi","line":2},{"title":"app-lubelogger","target":"app-lubelogger","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1iygt3p","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{1}","lines":[65,65],"size":35,"outlinks":[{"title":"app-glpi","target":"app-glpi","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"bc7rph","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{2}","lines":[66,67],"size":38,"outlinks":[{"title":"app-lubelogger","target":"app-lubelogger","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"21mih9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires","lines":[68,71],"size":85,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"q2kcs0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{1}","lines":[69,69],"size":31,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"zrpvov","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{2}","lines":[70,71],"size":35,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wjlnri","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité","lines":[72,75],"size":85,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"3zycs4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité#{1}","lines":[73,73],"size":34,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"13camp7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#🔐 Sécurité#{2}","lines":[74,75],"size":35,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ov7uf3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources","lines":[76,79],"size":118,"outlinks":[{"title":"Documentation","target":"https://docs.atlas-cmms.com/","line":2},{"title":"GitHub","target":"https://github.com/atlas-cmms/atlas-cmms","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"8cshgo","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources#{1}","lines":[77,77],"size":47,"outlinks":[{"title":"Documentation","target":"https://docs.atlas-cmms.com/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5erq7b","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#📚 Ressources#{2}","lines":[78,79],"size":53,"outlinks":[{"title":"GitHub","target":"https://github.com/atlas-cmms/atlas-cmms","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qyyw45","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées","lines":[80,84],"size":148,"outlinks":[{"title":"cat-maintenance","target":"cat-maintenance","line":2},{"title":"app-glpi","target":"app-glpi","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xw919s","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{1}","lines":[81,81],"size":45,"outlinks":[{"title":"cat-maintenance","target":"cat-maintenance","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hz554b","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{2}","lines":[82,82],"size":37,"outlinks":[{"title":"app-glpi","target":"app-glpi","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md#⚙️ Atlas CMMS#Pages Liées#{3}","lines":[83,84],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-atlas-cmms.md": {"path":"Catalogue-Self-Hosted/apps/app-atlas-cmms.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"10bmdju","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780926196986,"size":2372,"at":1780929441825,"hash":"10bmdju"},"blocks":{"#---frontmatter---":[1,10],"#⚙️ Atlas CMMS":[12,84],"#⚙️ Atlas CMMS#{1}":[14,15],"#⚙️ Atlas CMMS#📋 Informations Générales":[16,26],"#⚙️ Atlas CMMS#📋 Informations Générales#{1}":[18,26],"#⚙️ Atlas CMMS#📝 Description":[27,30],"#⚙️ Atlas CMMS#📝 Description#{1}":[29,30],"#⚙️ Atlas CMMS#🚀 Installation":[31,61],"#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)":[33,61],"#⚙️ Atlas CMMS#🚀 Installation#Docker Compose (recommandé)#{1}":[35,61],"#⚙️ Atlas CMMS#🔄 Alternatives":[62,71],"#⚙️ Atlas CMMS#🔄 Alternatives#Open Source":[64,67],"#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{1}":[65,65],"#⚙️ Atlas CMMS#🔄 Alternatives#Open Source#{2}":[66,67],"#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires":[68,71],"#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{1}":[69,69],"#⚙️ Atlas CMMS#🔄 Alternatives#Propriétaires#{2}":[70,71],"#⚙️ Atlas CMMS#🔐 Sécurité":[72,75],"#⚙️ Atlas CMMS#🔐 Sécurité#{1}":[73,73],"#⚙️ Atlas CMMS#🔐 Sécurité#{2}":[74,75],"#⚙️ Atlas CMMS#📚 Ressources":[76,79],"#⚙️ Atlas CMMS#📚 Ressources#{1}":[77,77],"#⚙️ Atlas CMMS#📚 Ressources#{2}":[78,79],"#⚙️ Atlas CMMS#Pages Liées":[80,84],"#⚙️ Atlas CMMS#Pages Liées#{1}":[81,81],"#⚙️ Atlas CMMS#Pages Liées#{2}":[82,82],"#⚙️ Atlas CMMS#Pages Liées#{3}":[83,84]},"outlinks":[{"title":"atlas-cmms.com","target":"https://atlas-cmms.com/","line":20},{"title":"atlas-cmms/atlas-cmms","target":"https://github.com/atlas-cmms/atlas-cmms","line":21},{"title":"Maintenance","target":"cat-maintenance","line":25},{"title":"app-glpi","target":"app-glpi","line":65},{"title":"app-lubelogger","target":"app-lubelogger","line":66},{"title":"Documentation","target":"https://docs.atlas-cmms.com/","line":77},{"title":"GitHub","target":"https://github.com/atlas-cmms/atlas-cmms","line":78},{"title":"cat-maintenance","target":"cat-maintenance","line":81},{"title":"app-glpi","target":"app-glpi","line":82},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":83}],"task_lines":[],"tasks":{},"codeblock_ranges":[[35,60]]},
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,32 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14n9vjl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#---frontmatter---","lines":[1,10],"size":225,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1tlw4qy","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM","lines":[12,79],"size":2355,"outlinks":[{"title":"atomiccrm.app","target":"https://atomiccrm.app","line":9},{"title":"marmelab/atomic-crm","target":"https://github.com/marmelab/atomic-crm","line":10},{"title":"CRM","target":"cat-crm\\","line":14},{"title":"app-twenty","target":"app-twenty","line":46},{"title":"app-espocrm","target":"app-espocrm","line":47},{"title":"app-meerkat-crm","target":"app-meerkat-crm","line":48},{"title":"Site officiel","target":"https://atomiccrm.app","line":60},{"title":"GitHub","target":"https://github.com/marmelab/atomic-crm","line":61},{"title":"Doc React Admin","target":"https://marmelab.com/react-admin/","line":62},{"title":"cat-crm","target":"cat-crm","line":65},{"title":"app-twenty","target":"app-twenty","line":66},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":67}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"tiuoy4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#{1}","lines":[14,15],"size":110,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1q48lft","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📋 Informations Générales","lines":[16,26],"size":326,"outlinks":[{"title":"atomiccrm.app","target":"https://atomiccrm.app","line":5},{"title":"marmelab/atomic-crm","target":"https://github.com/marmelab/atomic-crm","line":6},{"title":"CRM","target":"cat-crm\\","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10ujy6u","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📋 Informations Générales#{1}","lines":[18,26],"size":296,"outlinks":[{"title":"atomiccrm.app","target":"https://atomiccrm.app","line":3},{"title":"marmelab/atomic-crm","target":"https://github.com/marmelab/atomic-crm","line":4},{"title":"CRM","target":"cat-crm\\","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1xybkx6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📝 Description","lines":[27,32],"size":574,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"6qzf64","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📝 Description#{1}","lines":[29,32],"size":555,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12izoks","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation","lines":[33,53],"size":572,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"oy0q0u","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)","lines":[35,53],"size":552,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1dpcjtv","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[37,53],"size":519,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18v3h5c","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives","lines":[54,64],"size":245,"outlinks":[{"title":"app-twenty","target":"app-twenty","line":4},{"title":"app-espocrm","target":"app-espocrm","line":5},{"title":"app-meerkat-crm","target":"app-meerkat-crm","line":6}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"i535ho","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source","lines":[56,60],"size":135,"outlinks":[{"title":"app-twenty","target":"app-twenty","line":2},{"title":"app-espocrm","target":"app-espocrm","line":3},{"title":"app-meerkat-crm","target":"app-meerkat-crm","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1urkvwu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{1}","lines":[57,57],"size":42,"outlinks":[{"title":"app-twenty","target":"app-twenty","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gsrxx5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{2}","lines":[58,58],"size":35,"outlinks":[{"title":"app-espocrm","target":"app-espocrm","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16890yl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{3}","lines":[59,60],"size":40,"outlinks":[{"title":"app-meerkat-crm","target":"app-meerkat-crm","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1549tc3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires","lines":[61,64],"size":89,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pyg8y4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{1}","lines":[62,62],"size":29,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1s6waan","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{2}","lines":[63,64],"size":41,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1csuqf9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité","lines":[65,69],"size":208,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"2i93wc","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{1}","lines":[66,66],"size":71,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"lrw2i3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{2}","lines":[67,67],"size":58,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11xjovt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#🔐 Sécurité#{3}","lines":[68,69],"size":62,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"a4wglg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources","lines":[70,74],"size":164,"outlinks":[{"title":"Site officiel","target":"https://atomiccrm.app","line":2},{"title":"GitHub","target":"https://github.com/marmelab/atomic-crm","line":3},{"title":"Doc React Admin","target":"https://marmelab.com/react-admin/","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11kxxm8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{1}","lines":[71,71],"size":40,"outlinks":[{"title":"Site officiel","target":"https://atomiccrm.app","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"q7aqg0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{2}","lines":[72,72],"size":50,"outlinks":[{"title":"GitHub","target":"https://github.com/marmelab/atomic-crm","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1pij9mj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#📚 Ressources#{3}","lines":[73,74],"size":55,"outlinks":[{"title":"Doc React Admin","target":"https://marmelab.com/react-admin/","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"178tgv3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées","lines":[75,79],"size":132,"outlinks":[{"title":"cat-crm","target":"cat-crm","line":2},{"title":"app-twenty","target":"app-twenty","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"78h7i1","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{1}","lines":[76,76],"size":29,"outlinks":[{"title":"cat-crm","target":"cat-crm","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1a0t6k5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{2}","lines":[77,77],"size":37,"outlinks":[{"title":"app-twenty","target":"app-twenty","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atomic-crm.md#⚛️ Atomic CRM#Pages Liées#{3}","lines":[78,79],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-atomic-crm.md": {"path":"Catalogue-Self-Hosted/apps/app-atomic-crm.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1uadub2","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780926023777,"size":2655,"at":1780929441825,"hash":"1uadub2"},"blocks":{"#---frontmatter---":[1,10],"#⚛️ Atomic CRM":[12,79],"#⚛️ Atomic CRM#{1}":[14,15],"#⚛️ Atomic CRM#📋 Informations Générales":[16,26],"#⚛️ Atomic CRM#📋 Informations Générales#{1}":[18,26],"#⚛️ Atomic CRM#📝 Description":[27,32],"#⚛️ Atomic CRM#📝 Description#{1}":[29,32],"#⚛️ Atomic CRM#🚀 Installation":[33,53],"#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)":[35,53],"#⚛️ Atomic CRM#🚀 Installation#Docker Compose (recommandé)#{1}":[37,53],"#⚛️ Atomic CRM#🔄 Alternatives":[54,64],"#⚛️ Atomic CRM#🔄 Alternatives#Open Source":[56,60],"#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{1}":[57,57],"#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{2}":[58,58],"#⚛️ Atomic CRM#🔄 Alternatives#Open Source#{3}":[59,60],"#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires":[61,64],"#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{1}":[62,62],"#⚛️ Atomic CRM#🔄 Alternatives#Propriétaires#{2}":[63,64],"#⚛️ Atomic CRM#🔐 Sécurité":[65,69],"#⚛️ Atomic CRM#🔐 Sécurité#{1}":[66,66],"#⚛️ Atomic CRM#🔐 Sécurité#{2}":[67,67],"#⚛️ Atomic CRM#🔐 Sécurité#{3}":[68,69],"#⚛️ Atomic CRM#📚 Ressources":[70,74],"#⚛️ Atomic CRM#📚 Ressources#{1}":[71,71],"#⚛️ Atomic CRM#📚 Ressources#{2}":[72,72],"#⚛️ Atomic CRM#📚 Ressources#{3}":[73,74],"#⚛️ Atomic CRM#Pages Liées":[75,79],"#⚛️ Atomic CRM#Pages Liées#{1}":[76,76],"#⚛️ Atomic CRM#Pages Liées#{2}":[77,77],"#⚛️ Atomic CRM#Pages Liées#{3}":[78,79]},"outlinks":[{"title":"atomiccrm.app","target":"https://atomiccrm.app","line":20},{"title":"marmelab/atomic-crm","target":"https://github.com/marmelab/atomic-crm","line":21},{"title":"CRM","target":"cat-crm\\","line":25},{"title":"app-twenty","target":"app-twenty","line":57},{"title":"app-espocrm","target":"app-espocrm","line":58},{"title":"app-meerkat-crm","target":"app-meerkat-crm","line":59},{"title":"Site officiel","target":"https://atomiccrm.app","line":71},{"title":"GitHub","target":"https://github.com/marmelab/atomic-crm","line":72},{"title":"Doc React Admin","target":"https://marmelab.com/react-admin/","line":73},{"title":"cat-crm","target":"cat-crm","line":76},{"title":"app-twenty","target":"app-twenty","line":77},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":78}],"task_lines":[],"tasks":{},"codeblock_ranges":[[37,50]]},
|
||||
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"okzuos","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#---frontmatter---","lines":[1,10],"size":228,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fhy119","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria","lines":[12,88],"size":2523,"outlinks":[{"title":"https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":9},{"title":"thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":10},{"title":"Events","target":"cat-events","line":13},{"title":"app-hi-events","target":"app-hi-events","line":54},{"title":"app-mobilizon","target":"app-mobilizon","line":54},{"title":"app-pretix","target":"app-pretix","line":54},{"title":"GitHub https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":68},{"title":"Site officiel","target":"https://github.com/thesubtleties/atria","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Events&app=atria","line":70},{"title":"Events","target":"cat-events","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19nz9bd","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#{1}","lines":[14,15],"size":136,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"41b1g3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📋 Informations Générales","lines":[16,25],"size":347,"outlinks":[{"title":"https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":5},{"title":"thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":6},{"title":"Events","target":"cat-events","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1sdu6wh","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📋 Informations Générales#{1}","lines":[18,25],"size":315,"outlinks":[{"title":"https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":3},{"title":"thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":4},{"title":"Events","target":"cat-events","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1d6ccai","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📝 Description","lines":[26,33],"size":419,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"u7hmdb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📝 Description#{1}","lines":[28,33],"size":398,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18e8qim","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation","lines":[34,61],"size":608,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"186hmph","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":586,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"58kqol","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":551,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1navtk9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives","lines":[62,69],"size":244,"outlinks":[{"title":"app-hi-events","target":"app-hi-events","line":4},{"title":"app-mobilizon","target":"app-mobilizon","line":4},{"title":"app-pretix","target":"app-pretix","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"5w63ci","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Open Source","lines":[64,66],"size":110,"outlinks":[{"title":"app-hi-events","target":"app-hi-events","line":2},{"title":"app-mobilizon","target":"app-mobilizon","line":2},{"title":"app-pretix","target":"app-pretix","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"17wqky3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":93,"outlinks":[{"title":"app-hi-events","target":"app-hi-events","line":1},{"title":"app-mobilizon","target":"app-mobilizon","line":1},{"title":"app-pretix","target":"app-pretix","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ywftzr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)","lines":[67,69],"size":111,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"owy8it","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)#{1}","lines":[68,69],"size":68,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"x65ov0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📚 Ressources","lines":[77,82],"size":235,"outlinks":[{"title":"GitHub https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":3},{"title":"Site officiel","target":"https://github.com/thesubtleties/atria","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Events&app=atria","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ob928d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#📚 Ressources#{1}","lines":[79,82],"size":215,"outlinks":[{"title":"GitHub https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":1},{"title":"Site officiel","target":"https://github.com/thesubtleties/atria","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Events&app=atria","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ec4876","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#Pages Liées","lines":[83,88],"size":189,"outlinks":[{"title":"Events","target":"cat-events","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15i5zj8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-atria.md#📅 Atria#Pages Liées#{1}","lines":[84,88],"size":173,"outlinks":[{"title":"Events","target":"cat-events","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-atria.md": {"path":"Catalogue-Self-Hosted/apps/app-atria.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"198mofu","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780928026899,"size":2817,"at":1780929441825,"hash":"198mofu"},"blocks":{"#---frontmatter---":[1,10],"#📅 Atria":[12,88],"#📅 Atria#{1}":[14,15],"#📅 Atria#📋 Informations Générales":[16,25],"#📅 Atria#📋 Informations Générales#{1}":[18,25],"#📅 Atria#📝 Description":[26,33],"#📅 Atria#📝 Description#{1}":[28,33],"#📅 Atria#🚀 Installation":[34,61],"#📅 Atria#🚀 Installation#Docker Compose (recommandé)":[36,61],"#📅 Atria#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#📅 Atria#🔄 Alternatives":[62,69],"#📅 Atria#🔄 Alternatives#Open Source":[64,66],"#📅 Atria#🔄 Alternatives#Open Source#{1}":[65,66],"#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)":[67,69],"#📅 Atria#🔄 Alternatives#Propriétaires (ce que Atria remplace)#{1}":[68,69],"#📅 Atria#🔐 Sécurité":[70,76],"#📅 Atria#🔐 Sécurité#{1}":[72,76],"#📅 Atria#📚 Ressources":[77,82],"#📅 Atria#📚 Ressources#{1}":[79,82],"#📅 Atria#Pages Liées":[83,88],"#📅 Atria#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":20},{"title":"thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":21},{"title":"Events","target":"cat-events","line":24},{"title":"app-hi-events","target":"app-hi-events","line":65},{"title":"app-mobilizon","target":"app-mobilizon","line":65},{"title":"app-pretix","target":"app-pretix","line":65},{"title":"GitHub https://github.com/thesubtleties/atria","target":"https://github.com/thesubtleties/atria","line":79},{"title":"Site officiel","target":"https://github.com/thesubtleties/atria","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Events&app=atria","line":81},{"title":"Events","target":"cat-events","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
File diff suppressed because one or more lines are too long
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16bw4on","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#---frontmatter---","lines":[1,10],"size":256,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"506j","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest","lines":[12,88],"size":2834,"outlinks":[{"title":"https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":9},{"title":"SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":10},{"title":"Audiobooks","target":"cat-audiobooks","line":13},{"title":"app-audiobookshelf","target":"app-audiobookshelf","line":54},{"title":"app-ombi","target":"app-ombi","line":54},{"title":"GitHub https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":68},{"title":"Site officiel","target":"https://github.com/SeanBroughton/AudioBookRequest","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Audiobooks&app=audiobookrequest","line":70},{"title":"Audiobooks","target":"cat-audiobooks","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1m9ivrj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#{1}","lines":[14,15],"size":183,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"t8tnu","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📋 Informations Générales","lines":[16,25],"size":395,"outlinks":[{"title":"https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":5},{"title":"SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":6},{"title":"Audiobooks","target":"cat-audiobooks","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4g6lf8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📋 Informations Générales#{1}","lines":[18,25],"size":363,"outlinks":[{"title":"https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":3},{"title":"SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":4},{"title":"Audiobooks","target":"cat-audiobooks","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"k55vav","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📝 Description","lines":[26,33],"size":466,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"184bxew","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📝 Description#{1}","lines":[28,33],"size":445,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"8i0fg9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation","lines":[34,61],"size":685,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9azxd5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":663,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"13zdjlx","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":628,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xk1m3o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives","lines":[62,69],"size":265,"outlinks":[{"title":"app-audiobookshelf","target":"app-audiobookshelf","line":4},{"title":"app-ombi","target":"app-ombi","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"123b95d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Open Source","lines":[64,66],"size":114,"outlinks":[{"title":"app-audiobookshelf","target":"app-audiobookshelf","line":2},{"title":"app-ombi","target":"app-ombi","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"pptq9h","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":97,"outlinks":[{"title":"app-audiobookshelf","target":"app-audiobookshelf","line":1},{"title":"app-ombi","target":"app-ombi","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wntwnh","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)","lines":[67,69],"size":128,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1v3ycis","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)#{1}","lines":[68,69],"size":74,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"w0s5m5","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📚 Ressources","lines":[77,82],"size":283,"outlinks":[{"title":"GitHub https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":3},{"title":"Site officiel","target":"https://github.com/SeanBroughton/AudioBookRequest","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Audiobooks&app=audiobookrequest","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"28dobn","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#📚 Ressources#{1}","lines":[79,82],"size":263,"outlinks":[{"title":"GitHub https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":1},{"title":"Site officiel","target":"https://github.com/SeanBroughton/AudioBookRequest","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Audiobooks&app=audiobookrequest","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4zwm1b","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#Pages Liées","lines":[83,88],"size":201,"outlinks":[{"title":"Audiobooks","target":"cat-audiobooks","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"gh4yrk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md#🎧 AudioBookRequest#Pages Liées#{1}","lines":[84,88],"size":185,"outlinks":[{"title":"Audiobooks","target":"cat-audiobooks","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-audiobookrequest.md": {"path":"Catalogue-Self-Hosted/apps/app-audiobookrequest.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1nj65wi","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780928026899,"size":3158,"at":1780929441825,"hash":"1nj65wi"},"blocks":{"#---frontmatter---":[1,10],"#🎧 AudioBookRequest":[12,88],"#🎧 AudioBookRequest#{1}":[14,15],"#🎧 AudioBookRequest#📋 Informations Générales":[16,25],"#🎧 AudioBookRequest#📋 Informations Générales#{1}":[18,25],"#🎧 AudioBookRequest#📝 Description":[26,33],"#🎧 AudioBookRequest#📝 Description#{1}":[28,33],"#🎧 AudioBookRequest#🚀 Installation":[34,61],"#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)":[36,61],"#🎧 AudioBookRequest#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#🎧 AudioBookRequest#🔄 Alternatives":[62,69],"#🎧 AudioBookRequest#🔄 Alternatives#Open Source":[64,66],"#🎧 AudioBookRequest#🔄 Alternatives#Open Source#{1}":[65,66],"#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)":[67,69],"#🎧 AudioBookRequest#🔄 Alternatives#Propriétaires (ce que AudioBookRequest remplace)#{1}":[68,69],"#🎧 AudioBookRequest#🔐 Sécurité":[70,76],"#🎧 AudioBookRequest#🔐 Sécurité#{1}":[72,76],"#🎧 AudioBookRequest#📚 Ressources":[77,82],"#🎧 AudioBookRequest#📚 Ressources#{1}":[79,82],"#🎧 AudioBookRequest#Pages Liées":[83,88],"#🎧 AudioBookRequest#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":20},{"title":"SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":21},{"title":"Audiobooks","target":"cat-audiobooks","line":24},{"title":"app-audiobookshelf","target":"app-audiobookshelf","line":65},{"title":"app-ombi","target":"app-ombi","line":65},{"title":"GitHub https://github.com/SeanBroughton/AudioBookRequest","target":"https://github.com/SeanBroughton/AudioBookRequest","line":79},{"title":"Site officiel","target":"https://github.com/SeanBroughton/AudioBookRequest","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=Audiobooks&app=audiobookrequest","line":81},{"title":"Audiobooks","target":"cat-audiobooks","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
@@ -0,0 +1,48 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1k5rye","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#---frontmatter---","lines":[1,10],"size":265,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"15hmca3","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf","lines":[12,107],"size":3451,"outlinks":[{"title":"audiobookshelf.org","target":"https://audiobookshelf.org","line":9},{"title":"advplyr/audiobookshelf","target":"https://github.com/advplyr/audiobookshelf","line":10},{"title":"Audiobooks","target":"cat-audiobooks","line":14},{"title":"app-storyteller","target":"app-storyteller","line":68},{"title":"app-ebook2audiobook","target":"app-ebook2audiobook","line":69},{"title":"Documentation","target":"https://www.audiobookshelf.org/docs","line":88},{"title":"GitHub","target":"https://github.com/advplyr/audiobookshelf","line":89},{"title":"Apps mobiles","target":"https://github.com/advplyr/audiobookshelf-app","line":90},{"title":"cat-audiobooks","target":"cat-audiobooks","line":93},{"title":"app-storyteller","target":"app-storyteller","line":94},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":95}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"x6z8ne","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#{1}","lines":[14,15],"size":169,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1hd30mt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📋 Informations Générales","lines":[16,26],"size":352,"outlinks":[{"title":"audiobookshelf.org","target":"https://audiobookshelf.org","line":5},{"title":"advplyr/audiobookshelf","target":"https://github.com/advplyr/audiobookshelf","line":6},{"title":"Audiobooks","target":"cat-audiobooks","line":10}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"vk5f38","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📋 Informations Générales#{1}","lines":[18,26],"size":322,"outlinks":[{"title":"audiobookshelf.org","target":"https://audiobookshelf.org","line":3},{"title":"advplyr/audiobookshelf","target":"https://github.com/advplyr/audiobookshelf","line":4},{"title":"Audiobooks","target":"cat-audiobooks","line":8}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"14gmbrl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description","lines":[27,45],"size":1098,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"eetaf9","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{1}","lines":[29,31],"size":228,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"afc258","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{2}","lines":[32,32],"size":71,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"l32fzr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{3}","lines":[33,33],"size":57,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1ukpbdk","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{4}","lines":[34,34],"size":69,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1i2ga9f","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{5}","lines":[35,35],"size":54,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{6}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fp3jjh","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{6}","lines":[36,36],"size":72,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{7}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1hxvozt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{7}","lines":[37,37],"size":50,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{8}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fc12v","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{8}","lines":[38,38],"size":44,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{9}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10hpq59","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{9}","lines":[39,39],"size":43,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{10}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"hzsdou","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{10}","lines":[40,41],"size":56,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{11}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"d6ts0o","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📝 Description#{11}","lines":[42,45],"size":325,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"18qygpe","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation","lines":[46,75],"size":721,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"mf3i6u","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)","lines":[48,75],"size":701,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"19102pg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[50,75],"size":668,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1hxwak8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives","lines":[76,89],"size":423,"outlinks":[{"title":"app-storyteller","target":"app-storyteller","line":4},{"title":"app-ebook2audiobook","target":"app-ebook2audiobook","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ho9ovl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source","lines":[78,84],"size":231,"outlinks":[{"title":"app-storyteller","target":"app-storyteller","line":2},{"title":"app-ebook2audiobook","target":"app-ebook2audiobook","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"p5jfyj","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{1}","lines":[79,79],"size":40,"outlinks":[{"title":"app-storyteller","target":"app-storyteller","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1qpy63q","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{2}","lines":[80,80],"size":54,"outlinks":[{"title":"app-ebook2audiobook","target":"app-ebook2audiobook","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"s9ew10","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{3}","lines":[81,81],"size":30,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"b0tcx0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{4}","lines":[82,82],"size":38,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"7a648f","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Open Source#{5}","lines":[83,84],"size":49,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"emf7ea","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires","lines":[85,89],"size":171,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1p500im","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{1}","lines":[86,86],"size":52,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11dwbg8","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{2}","lines":[87,87],"size":46,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1q0edhr","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{3}","lines":[88,89],"size":53,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1azu9jc","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité","lines":[90,97],"size":319,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10raj9y","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{1}","lines":[91,91],"size":62,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"4lrn60","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{2}","lines":[92,92],"size":49,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1d1zs7z","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{3}","lines":[93,93],"size":51,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{4}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"11vhz8n","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{4}","lines":[94,94],"size":61,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{5}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"xm89o6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{5}","lines":[95,95],"size":43,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{6}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1dj6irm","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#🔐 Sécurité#{6}","lines":[96,97],"size":33,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1m69f7k","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources","lines":[98,102],"size":190,"outlinks":[{"title":"Documentation","target":"https://www.audiobookshelf.org/docs","line":2},{"title":"GitHub","target":"https://github.com/advplyr/audiobookshelf","line":3},{"title":"Apps mobiles","target":"https://github.com/advplyr/audiobookshelf-app","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1uwtzw6","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{1}","lines":[99,99],"size":54,"outlinks":[{"title":"Documentation","target":"https://www.audiobookshelf.org/docs","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"ppj6bl","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{2}","lines":[100,100],"size":53,"outlinks":[{"title":"GitHub","target":"https://github.com/advplyr/audiobookshelf","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10vs59s","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#📚 Ressources#{3}","lines":[101,102],"size":64,"outlinks":[{"title":"Apps mobiles","target":"https://github.com/advplyr/audiobookshelf-app","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12avu97","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées","lines":[103,107],"size":151,"outlinks":[{"title":"cat-audiobooks","target":"cat-audiobooks","line":2},{"title":"app-storyteller","target":"app-storyteller","line":3},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jr3ue7","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{1}","lines":[104,104],"size":43,"outlinks":[{"title":"cat-audiobooks","target":"cat-audiobooks","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{2}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"p898qt","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{2}","lines":[105,105],"size":42,"outlinks":[{"title":"app-storyteller","target":"app-storyteller","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{3}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"10w8gik","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md#📚 AudioBookshelf#Pages Liées#{3}","lines":[106,107],"size":49,"outlinks":[{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":1}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-audiobookshelf.md": {"path":"Catalogue-Self-Hosted/apps/app-audiobookshelf.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"v6h7e6","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780925267715,"size":3818,"at":1780929441825,"hash":"v6h7e6"},"blocks":{"#---frontmatter---":[1,10],"#📚 AudioBookshelf":[12,107],"#📚 AudioBookshelf#{1}":[14,15],"#📚 AudioBookshelf#📋 Informations Générales":[16,26],"#📚 AudioBookshelf#📋 Informations Générales#{1}":[18,26],"#📚 AudioBookshelf#📝 Description":[27,45],"#📚 AudioBookshelf#📝 Description#{1}":[29,31],"#📚 AudioBookshelf#📝 Description#{2}":[32,32],"#📚 AudioBookshelf#📝 Description#{3}":[33,33],"#📚 AudioBookshelf#📝 Description#{4}":[34,34],"#📚 AudioBookshelf#📝 Description#{5}":[35,35],"#📚 AudioBookshelf#📝 Description#{6}":[36,36],"#📚 AudioBookshelf#📝 Description#{7}":[37,37],"#📚 AudioBookshelf#📝 Description#{8}":[38,38],"#📚 AudioBookshelf#📝 Description#{9}":[39,39],"#📚 AudioBookshelf#📝 Description#{10}":[40,41],"#📚 AudioBookshelf#📝 Description#{11}":[42,45],"#📚 AudioBookshelf#🚀 Installation":[46,75],"#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)":[48,75],"#📚 AudioBookshelf#🚀 Installation#Docker Compose (recommandé)#{1}":[50,75],"#📚 AudioBookshelf#🔄 Alternatives":[76,89],"#📚 AudioBookshelf#🔄 Alternatives#Open Source":[78,84],"#📚 AudioBookshelf#🔄 Alternatives#Open Source#{1}":[79,79],"#📚 AudioBookshelf#🔄 Alternatives#Open Source#{2}":[80,80],"#📚 AudioBookshelf#🔄 Alternatives#Open Source#{3}":[81,81],"#📚 AudioBookshelf#🔄 Alternatives#Open Source#{4}":[82,82],"#📚 AudioBookshelf#🔄 Alternatives#Open Source#{5}":[83,84],"#📚 AudioBookshelf#🔄 Alternatives#Propriétaires":[85,89],"#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{1}":[86,86],"#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{2}":[87,87],"#📚 AudioBookshelf#🔄 Alternatives#Propriétaires#{3}":[88,89],"#📚 AudioBookshelf#🔐 Sécurité":[90,97],"#📚 AudioBookshelf#🔐 Sécurité#{1}":[91,91],"#📚 AudioBookshelf#🔐 Sécurité#{2}":[92,92],"#📚 AudioBookshelf#🔐 Sécurité#{3}":[93,93],"#📚 AudioBookshelf#🔐 Sécurité#{4}":[94,94],"#📚 AudioBookshelf#🔐 Sécurité#{5}":[95,95],"#📚 AudioBookshelf#🔐 Sécurité#{6}":[96,97],"#📚 AudioBookshelf#📚 Ressources":[98,102],"#📚 AudioBookshelf#📚 Ressources#{1}":[99,99],"#📚 AudioBookshelf#📚 Ressources#{2}":[100,100],"#📚 AudioBookshelf#📚 Ressources#{3}":[101,102],"#📚 AudioBookshelf#Pages Liées":[103,107],"#📚 AudioBookshelf#Pages Liées#{1}":[104,104],"#📚 AudioBookshelf#Pages Liées#{2}":[105,105],"#📚 AudioBookshelf#Pages Liées#{3}":[106,107]},"outlinks":[{"title":"audiobookshelf.org","target":"https://audiobookshelf.org","line":20},{"title":"advplyr/audiobookshelf","target":"https://github.com/advplyr/audiobookshelf","line":21},{"title":"Audiobooks","target":"cat-audiobooks","line":25},{"title":"app-storyteller","target":"app-storyteller","line":79},{"title":"app-ebook2audiobook","target":"app-ebook2audiobook","line":80},{"title":"Documentation","target":"https://www.audiobookshelf.org/docs","line":99},{"title":"GitHub","target":"https://github.com/advplyr/audiobookshelf","line":100},{"title":"Apps mobiles","target":"https://github.com/advplyr/audiobookshelf-app","line":101},{"title":"cat-audiobooks","target":"cat-audiobooks","line":104},{"title":"app-storyteller","target":"app-storyteller","line":105},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":106}],"metadata":{"title":"AudioBookshelf","created":"2026-06-08","updated":"2026-06-08","type":"app","tags":["#catalogue","#audiobooks","#podcast","#media","#app-marathon3-rattrapage-a"],"confidence":"high","contested":false,"sources":["https://selfh.st/apps/?tag=Audiobooks","https://audiobookshelf.org/"]},"task_lines":[],"tasks":{},"codeblock_ranges":[[50,74]]},
|
||||
@@ -0,0 +1,23 @@
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#---frontmatter---": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1koxv1g","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#---frontmatter---","lines":[1,10],"size":222,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"v3ztkp","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus","lines":[12,88],"size":2454,"outlinks":[{"title":"https://aureuserp.com","target":"https://aureuserp.com","line":9},{"title":"aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":10},{"title":"ERP","target":"cat-erp","line":13},{"title":"app-dolibarr","target":"app-dolibarr","line":54},{"title":"app-erpnext","target":"app-erpnext","line":54},{"title":"app-odoo","target":"app-odoo","line":54},{"title":"GitHub https://github.com/aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":68},{"title":"Site officiel","target":"https://aureuserp.com","line":69},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=ERP&app=aureus","line":70},{"title":"ERP","target":"cat-erp","line":73},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":74},{"title":"securisation-home-lab","target":"securisation-home-lab","line":75},{"title":"glossaire-homelab","target":"glossaire-homelab","line":76}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1szggkz","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#{1}","lines":[14,15],"size":132,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📋 Informations Générales": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"yrk4m","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📋 Informations Générales","lines":[16,25],"size":306,"outlinks":[{"title":"https://aureuserp.com","target":"https://aureuserp.com","line":5},{"title":"aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":6},{"title":"ERP","target":"cat-erp","line":9}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📋 Informations Générales#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1fpp1t4","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📋 Informations Générales#{1}","lines":[18,25],"size":274,"outlinks":[{"title":"https://aureuserp.com","target":"https://aureuserp.com","line":3},{"title":"aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":4},{"title":"ERP","target":"cat-erp","line":7}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📝 Description": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"40l24v","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📝 Description","lines":[26,33],"size":415,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📝 Description#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"16utnxd","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📝 Description#{1}","lines":[28,33],"size":394,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1f61906","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation","lines":[34,61],"size":611,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1untqqg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)","lines":[36,61],"size":589,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1e9n34i","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)#{1}","lines":[38,61],"size":554,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"78w97c","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives","lines":[62,69],"size":254,"outlinks":[{"title":"app-dolibarr","target":"app-dolibarr","line":4},{"title":"app-erpnext","target":"app-erpnext","line":4},{"title":"app-odoo","target":"app-odoo","line":4}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Open Source": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"on9dvb","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Open Source","lines":[64,66],"size":105,"outlinks":[{"title":"app-dolibarr","target":"app-dolibarr","line":2},{"title":"app-erpnext","target":"app-erpnext","line":2},{"title":"app-odoo","target":"app-odoo","line":2}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Open Source#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1d83fcg","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Open Source#{1}","lines":[65,66],"size":88,"outlinks":[{"title":"app-dolibarr","target":"app-dolibarr","line":1},{"title":"app-erpnext","target":"app-erpnext","line":1},{"title":"app-odoo","target":"app-odoo","line":1}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1nudm4d","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)","lines":[67,69],"size":126,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1jgo42a","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)#{1}","lines":[68,69],"size":82,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔐 Sécurité": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12kncud","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔐 Sécurité","lines":[70,76],"size":324,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔐 Sécurité#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"9db754","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#🔐 Sécurité#{1}","lines":[72,76],"size":306,"outlinks":[],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📚 Ressources": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"tzdsga","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📚 Ressources","lines":[77,82],"size":210,"outlinks":[{"title":"GitHub https://github.com/aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":3},{"title":"Site officiel","target":"https://aureuserp.com","line":4},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=ERP&app=aureus","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📚 Ressources#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"1l2pdf0","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#📚 Ressources#{1}","lines":[79,82],"size":190,"outlinks":[{"title":"GitHub https://github.com/aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":1},{"title":"Site officiel","target":"https://aureuserp.com","line":2},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=ERP&app=aureus","line":3}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#Pages Liées": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"wuhphy","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#Pages Liées","lines":[83,88],"size":180,"outlinks":[{"title":"ERP","target":"cat-erp","line":2},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":3},{"title":"securisation-home-lab","target":"securisation-home-lab","line":4},{"title":"glossaire-homelab","target":"glossaire-homelab","line":5}],"class_name":"SmartBlock"},
|
||||
"smart_blocks:Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#Pages Liées#{1}": {"path":null,"last_embed":{"hash":null},"embeddings":{},"text":null,"length":0,"last_read":{"hash":"12p9lj2","at":1780929441626},"key":"Catalogue-Self-Hosted/apps/app-aureus.md#🏢 Aureus#Pages Liées#{1}","lines":[84,88],"size":164,"outlinks":[{"title":"ERP","target":"cat-erp","line":1},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":2},{"title":"securisation-home-lab","target":"securisation-home-lab","line":3},{"title":"glossaire-homelab","target":"glossaire-homelab","line":4}],"class_name":"SmartBlock"},
|
||||
|
||||
"smart_sources:Catalogue-Self-Hosted/apps/app-aureus.md": {"path":"Catalogue-Self-Hosted/apps/app-aureus.md","last_embed":{"hash":null},"embeddings":{},"last_read":{"hash":"1ha3v18","at":1780929441626},"class_name":"SmartSource","last_import":{"mtime":1780928026899,"size":2738,"at":1780929441825,"hash":"1ha3v18"},"blocks":{"#---frontmatter---":[1,10],"#🏢 Aureus":[12,88],"#🏢 Aureus#{1}":[14,15],"#🏢 Aureus#📋 Informations Générales":[16,25],"#🏢 Aureus#📋 Informations Générales#{1}":[18,25],"#🏢 Aureus#📝 Description":[26,33],"#🏢 Aureus#📝 Description#{1}":[28,33],"#🏢 Aureus#🚀 Installation":[34,61],"#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)":[36,61],"#🏢 Aureus#🚀 Installation#Docker Compose (recommandé)#{1}":[38,61],"#🏢 Aureus#🔄 Alternatives":[62,69],"#🏢 Aureus#🔄 Alternatives#Open Source":[64,66],"#🏢 Aureus#🔄 Alternatives#Open Source#{1}":[65,66],"#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)":[67,69],"#🏢 Aureus#🔄 Alternatives#Propriétaires (ce que Aureus remplace)#{1}":[68,69],"#🏢 Aureus#🔐 Sécurité":[70,76],"#🏢 Aureus#🔐 Sécurité#{1}":[72,76],"#🏢 Aureus#📚 Ressources":[77,82],"#🏢 Aureus#📚 Ressources#{1}":[79,82],"#🏢 Aureus#Pages Liées":[83,88],"#🏢 Aureus#Pages Liées#{1}":[84,88]},"outlinks":[{"title":"https://aureuserp.com","target":"https://aureuserp.com","line":20},{"title":"aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":21},{"title":"ERP","target":"cat-erp","line":24},{"title":"app-dolibarr","target":"app-dolibarr","line":65},{"title":"app-erpnext","target":"app-erpnext","line":65},{"title":"app-odoo","target":"app-odoo","line":65},{"title":"GitHub https://github.com/aureuserp/aureus","target":"https://github.com/aureuserp/aureus","line":79},{"title":"Site officiel","target":"https://aureuserp.com","line":80},{"title":"selfh.st/apps","target":"https://selfh.st/apps/?tag=ERP&app=aureus","line":81},{"title":"ERP","target":"cat-erp","line":84},{"title":"recettes-docker-compose","target":"recettes-docker-compose","line":85},{"title":"securisation-home-lab","target":"securisation-home-lab","line":86},{"title":"glossaire-homelab","target":"glossaire-homelab","line":87}],"task_lines":[],"tasks":{},"codeblock_ranges":[[38,60]]},
|
||||
Some files were not shown because too many files have changed in this diff Show More
Reference in New Issue
Block a user