-
Notifications
You must be signed in to change notification settings - Fork 2
/
mkdocs.yaml
130 lines (118 loc) · 4.19 KB
/
mkdocs.yaml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
site_name: OQTOPUS
repo_url: "https://github.com/oqtopus-team/oqtopus-cloud"
nav:
- Home: index.md
- Architecture:
- AWS System Architecture Diagram: architecture/aws_system_architecture_diagram.md
- Job State Transition Diagram: architecture/task_state_transition_diagram.md
- Quantum Jobs in Detail: architecture/quantum_jobs_in_detail.md
- Sequence Diagram: architecture/sequence_diagram.md
- Developer Guidelines:
- Development Flow: developer_guidelines/index.md
- Setup Development Environment: developer_guidelines/setup.md
- OpenAPI Specification-Based Code Generation: developer_guidelines/openapi.md
- Backend Implementation: developer_guidelines/backend.md
- Terraform Guidelines: developer_guidelines/terraform_guidelines.md
- Terraform Modules:
- Overview: terraform_modules/README.md
- network: terraform_modules/network/README.md
- security-group: terraform_modules/security-group/README.md
- cognito: terraform_modules/cognito/README.md
- db: terraform_modules/db/README.md
- management: terraform_modules/management/README.md
- api-server: terraform_modules/api-server/README.md
- vpc-endpoint: terraform_modules/vpc-endpoint/README.md
- DB Schema:
- Overview: schema/README.md
- devices: schema/devices.md
- results: schema/results.md
- tasks: schema/tasks.md
- FAQ: developer_guidelines/faq.md
- OpenAPI Specification:
- User API: oas/user/README.md
- Provider API: oas/provider/README.md
- Operation:
- Setup Operation Environment: operation/setup.md
- Deployment: operation/deployment.md
- Others:
- How to Contribute: CONTRIBUTING.md
- Code of Conduct: CODE_OF_CONDUCT.md
- Security: SECURITY.md
theme:
name: 'material'
language: 'ja'
palette:
primary: 'indigo'
accent: 'indigo'
font:
text: 'Roboto'
code: 'Roboto Mono'
icon:
repo: fontawesome/brands/github
features:
- toc.integrate
markdown_extensions:
- pymdownx.superfences:
custom_fences:
- name: mermaid
class: mermaid
format: !!python/name:pymdownx.superfences.fence_code_format
- admonition
- footnotes
- codehilite
- toc:
permalink: true
plugins:
- swagger-ui-tag:
- search:
- i18n:
docs_structure: folder
languages:
- locale: en
name: English
build: true
default: true
- locale: ja
name: 日本語
build: true
default: false
nav_translations:
site_name: OQTOPUS
Home: ホーム
Overview: 概要
Architecture: アーキテクチャ
AWS System Architecture Diagram: AWSシステムアーキテクチャ図
Task State Transition Diagram: タスクの状態遷移
Sequence Diagram: シーケンス図
Developer Guidelines: 開発者ガイドライン
Development Flow: 開発フロー
Setup Development Environment: 開発環境のセットアップ
OpenAPI Specification-Based Code Generation: OpenAPI仕様書に基づくコード生成
Backend Implementation: バックエンドの実装
Terraform Guidelines: Terraformガイドライン
Terraform Modules: Terraformモジュール
DB Schema: DBスキーマ
FAQ: FAQ
OpenAPI Specification: OpenAPI仕様書
UserAPI: ユーザーAPI
ProviderAPI: プロバイダーAPI
Operation: 運用
Setup Operation Environment: 運用環境のセットアップ
Deployment: デプロイメント
Others: その他
How to Contribute: コントリビュートの方法
Code of Conduct: 行動規範
Security: セキュリティ
extra_css:
- "https://stackpath.bootstrapcdn.com/font-awesome/4.7.0/css/font-awesome.min.css"
- "css/custom.css"
extra:
toc:
include: 2
alternate:
- name: "English"
link: ""
lang: en
- name: "日本語"
link: "ja/"
lang: ja