Skip to content

Commit

Permalink
feat: introduce documentation skeleton
Browse files Browse the repository at this point in the history
  • Loading branch information
lwih committed Dec 30, 2024
1 parent 5abba35 commit ffdd47e
Show file tree
Hide file tree
Showing 19 changed files with 60 additions and 1 deletion.
Empty file added docs/.nojekyll
Empty file.
3 changes: 3 additions & 0 deletions docs/README.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
# RapportNav

doc homepage
4 changes: 4 additions & 0 deletions docs/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
<!-- docs/_sidebar.index.md -->
* [Home](/)
* [Concepts généraux](concepts/index)
* [Concepts techniques](engineering/index)
6 changes: 6 additions & 0 deletions docs/concepts/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,6 @@
* [Home](/)
* [RapportNav](concepts/rapportnav-goal.md)
* [Utilisateurs](concepts/users.md)
* [Missions](concepts/missions.md)
* [Entités à maîtriser](concepts/main-entities.md)
* [MonitorEnv & MonitorFish](concepts/fish-env.md)
1 change: 1 addition & 0 deletions docs/concepts/fish-env.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
fish + env
1 change: 1 addition & 0 deletions docs/concepts/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
index concepts
1 change: 1 addition & 0 deletions docs/concepts/main-entities.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
main entities
1 change: 1 addition & 0 deletions docs/concepts/missions.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
types de missions
1 change: 1 addition & 0 deletions docs/concepts/rapportnav-goal.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
goal
1 change: 1 addition & 0 deletions docs/concepts/users.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
users PAM ULAM
5 changes: 5 additions & 0 deletions docs/engineering/_sidebar.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
* [Home](/)
* [Authentification](engineering/auth/index)
* [Frontend](engineering/frontend/index)
* [Backend](engineering/backend/index)
* [Infrastructure](engineering/infra/index)
1 change: 1 addition & 0 deletions docs/engineering/auth/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
auth
1 change: 1 addition & 0 deletions docs/engineering/backend/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
backend
1 change: 1 addition & 0 deletions docs/engineering/frontend/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
frontend
1 change: 1 addition & 0 deletions docs/engineering/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
index tech
1 change: 1 addition & 0 deletions docs/engineering/infra/index.md
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
infra
Empty file added docs/guide.md
Empty file.
29 changes: 29 additions & 0 deletions docs/index.html
Original file line number Diff line number Diff line change
@@ -0,0 +1,29 @@
<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Document</title>
<meta http-equiv="X-UA-Compatible" content="IE=edge,chrome=1" />
<meta name="description" content="Description">
<meta name="viewport" content="width=device-width, initial-scale=1.0, minimum-scale=1.0">
<link rel="stylesheet" href="//cdn.jsdelivr.net/npm/docsify@4/lib/themes/vue.css">
</head>
<body>
<div id="app"></div>
<script>
window.$docsify = {
name: '',
repo: ''
}
</script>
<!-- Docsify v4 -->
<script src="//cdn.jsdelivr.net/npm/docsify@4"></script>
<script>
window.$docsify = {
loadSidebar: true,
subMaxLevel: 4
}
</script>
<script src="//cdn.jsdelivr.net/npm/docsify/lib/docsify.min.js"></script>
</body>
</html>
3 changes: 2 additions & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
"preview": "vite preview",
"test": "vitest run src",
"test:watch": "vitest src",
"test:coverage": "vitest run --coverage"
"test:coverage": "vitest run --coverage",
"docs": "docsify serve docs"
},
"dependencies": {
"@apollo/client": "^3.11.10",
Expand Down

0 comments on commit ffdd47e

Please sign in to comment.