forked from aneoconsulting/ArmoniK.Community
-
Notifications
You must be signed in to change notification settings - Fork 0
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
1 parent
da08b06
commit fdf4cec
Showing
23 changed files
with
7,175 additions
and
7 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,8 @@ | ||
module.exports = { | ||
root: true, | ||
extends: '@nuxt/eslint-config', | ||
rules: { | ||
'vue/max-attributes-per-line': 'off', | ||
'vue/multi-word-component-names': 'off' | ||
} | ||
} |
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,12 @@ | ||
node_modules | ||
*.iml | ||
.idea | ||
*.log* | ||
.nuxt | ||
.vscode | ||
.DS_Store | ||
coverage | ||
dist | ||
sw.* | ||
.env | ||
.output |
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,2 @@ | ||
shamefully-hoist=true | ||
strict-peer-dependencies=false |
This file was deleted.
Oops, something went wrong.
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,5 @@ | ||
# ArmoniK Community | ||
|
||
All our ways of working and our good practices. | ||
|
||
[Get Started](https://aneoconsulting.github.io/ArmoniK.Community) |
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,14 @@ | ||
export default defineAppConfig({ | ||
docus: { | ||
title: "ArmoniK.Community", | ||
description: "All our ways of working and our good practices.", | ||
socials: { | ||
github: 'aneoconsulting/ArmoniK.Community', | ||
}, | ||
github: { | ||
dir: 'content', | ||
repo: 'ArmoniK.Community', | ||
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 |
---|---|---|
@@ -0,0 +1,23 @@ | ||
--- | ||
title: ArmoniK Community | ||
navigation: false | ||
main.fluid: false | ||
layout: page | ||
--- | ||
|
||
::block-hero | ||
--- | ||
cta: | ||
- Get Started | ||
- /introduction | ||
secondary: | ||
- Open on GitHub → | ||
- https://github.com/aneoconsulting/ArmoniK.Community | ||
--- | ||
|
||
#title | ||
ArmoniK Community | ||
|
||
#description | ||
All our ways of working and our good practices | ||
:: |
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 |
---|---|---|
@@ -0,0 +1,7 @@ | ||
--- | ||
title: Sign the CLA | ||
navigation.icon: lucide:file-signature | ||
--- | ||
|
||
<!-- In the file, you explain how the cla can be signed. --> | ||
*Work in progress* |
File renamed without changes.
File renamed without changes.
File renamed without changes.
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 @@ | ||
title: Working Processes | ||
navigation.icon: carbon:integration | ||
redirect: /working-processes/discuss-first |
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 |
---|---|---|
@@ -0,0 +1,3 @@ | ||
title: Contribution Guides | ||
navigation.icon: carbon:code-reference | ||
redirect: /contribution-guides/typescript |
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 @@ | ||
const baseURL = process.env.NODE_ENV === "production" ? "/ArmoniK.Community/" : "/"; | ||
|
||
export default defineNuxtConfig({ | ||
app: { | ||
baseURL: baseURL, | ||
head: { | ||
link: [ | ||
{ | ||
rel: 'icon', | ||
type: 'image/ico', | ||
href: `${baseURL}favicon.ico`, | ||
} | ||
] | ||
} | ||
}, | ||
|
||
extends: "@aneoconsultingfr/armonik-docs-theme", | ||
}) |
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 @@ | ||
{ | ||
"name": "armonik-community", | ||
"version": "0.1.0", | ||
"private": true, | ||
"scripts": { | ||
"dev": "nuxi dev", | ||
"build": "nuxi build", | ||
"generate": "nuxi generate", | ||
"preview": "nuxi preview", | ||
"lint": "eslint ." | ||
}, | ||
"dependencies": { | ||
"@nuxt/eslint-config": "^0.1.1", | ||
"eslint": "^8.35.0", | ||
"nuxt": "^3.2.2", | ||
"rollup": "3.18.0", | ||
"@aneoconsultingfr/armonik-docs-theme": "^0.5.3" | ||
} | ||
} |
Oops, something went wrong.