-
Notifications
You must be signed in to change notification settings - Fork 11
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
17 changed files
with
3,817 additions
and
2,021 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,4 @@ | ||
dist | ||
node_modules | ||
.output | ||
.nuxt |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"root": true, | ||
"extends": "@nuxtjs/eslint-config-typescript", | ||
"rules": { | ||
"vue/multi-word-component-names": [ | ||
0 | ||
], | ||
"vue/no-multiple-template-root": [ | ||
0 | ||
], | ||
"vue/no-restricted-syntax": [ | ||
"error", | ||
{ | ||
"selector": "VElement[name='a']", | ||
"message": "Use NuxtLink instead." | ||
} | ||
] | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -10,3 +10,4 @@ dist | |
sw.* | ||
.env | ||
.output | ||
.eslintcache |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
# Default state for all rules | ||
default: true | ||
# Disable max line length | ||
MD013: false | ||
# Disable space after hash on atx style heading | ||
MD018: false | ||
# Allow duplicated heading for different sections | ||
MD024: | ||
allow_different_nesting: true | ||
siblings_only: true | ||
# Allow multiple top-level headings | ||
MD025: false | ||
# Allow inline HTML | ||
MD033: false | ||
# Allow non blank lines around list | ||
MD032: false | ||
MD046: | ||
style: fenced |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,3 @@ | ||
**/node_modules | ||
|
||
content/0.index.md |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,14 +1,14 @@ | ||
export default defineAppConfig({ | ||
docus: { | ||
title: "ArmoniK.Api", | ||
description: "API for ArmoniK", | ||
title: 'ArmoniK.Api', | ||
description: 'API for ArmoniK', | ||
socials: { | ||
github: 'aneoconsulting/ArmoniK.Api', | ||
github: 'aneoconsulting/ArmoniK.Api' | ||
}, | ||
github: { | ||
dir: '.docs/content', | ||
repo: 'ArmoniK.Api', | ||
owner: 'aneoconsulting', | ||
}, | ||
owner: 'aneoconsulting' | ||
} | ||
} | ||
}); | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -5,6 +5,8 @@ layout: page | |
main.fluid: false | ||
--- | ||
|
||
<!-- @case-police-ignore Api --> | ||
|
||
::block-hero | ||
--- | ||
cta: | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,3 @@ | ||
# Get started | ||
|
||
Let's get started with ArmoniK Api. | ||
Let's get started with ArmoniK API. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,25 +1,25 @@ | ||
const baseURL = process.env.NODE_ENV === "production" ? "/ArmoniK.Api/" : "/"; | ||
const baseURL = process.env.NODE_ENV === 'production' ? '/ArmoniK.Api/' : '/' | ||
|
||
export default defineNuxtConfig({ | ||
app: { | ||
baseURL: baseURL, | ||
baseURL, | ||
head: { | ||
link: [ | ||
{ | ||
rel: 'icon', | ||
type: 'image/ico', | ||
href: `${baseURL}favicon.ico`, | ||
href: `${baseURL}favicon.ico` | ||
} | ||
] | ||
} | ||
}, | ||
|
||
extends: "@aneoconsultingfr/armonik-docs-theme", | ||
extends: '@aneoconsultingfr/armonik-docs-theme', | ||
|
||
runtimeConfig: { | ||
public: { | ||
siteName: 'ArmoniK.Api', | ||
siteDescription: 'API for ArmoniK', | ||
siteDescription: 'API for ArmoniK' | ||
} | ||
}, | ||
}); | ||
} | ||
}) |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.