forked from aws/copilot-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathmkdocs.yml
112 lines (109 loc) · 4.07 KB
/
mkdocs.yml
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
site_name: AWS Copilot CLI
site_description: 'Develop, Release and Operate Container Apps on AWS.'
repo_name: 'aws/copilot-cli'
repo_url: 'https://github.com/aws/copilot-cli'
edit_uri: 'edit/mainline/site/content'
copyright: 'Copyright © 2020 Amazon'
docs_dir: 'site/content'
extra_css:
- stylesheets/extra.css
nav:
- Home: index.md
- Documentation:
- Overview: docs/overview.md
- Getting Started:
- Install Copilot: docs/getting-started/install.md
- (Optional) Verify the installation: docs/getting-started/verify.md
- Deploy your first application: docs/getting-started/first-app-tutorial.md
- Concepts:
- Overview: docs/concepts/overview.md
- Applications: docs/concepts/applications.md
- Environments: docs/concepts/environments.md
- Services: docs/concepts/services.md
- Jobs: docs/concepts/jobs.md
- Pipelines: docs/concepts/pipelines.md
- Credentials: docs/credentials.md
- Manifest:
- Overview: docs/manifest/overview.md
- Load Balanced Web Service: docs/manifest/lb-web-service.md
- Backend Service: docs/manifest/backend-service.md
- Scheduled Job: docs/manifest/scheduled-job.md
- Pipeline: docs/manifest/pipeline.md
- Developing:
- Environment Variables: docs/developing/environment-variables.md
- Secrets: docs/developing/secrets.md
- Service Discovery: docs/developing/service-discovery.md
- Additional AWS Resources: docs/developing/additional-aws-resources.md
- Sidecars: docs/developing/sidecars.md
- Commands:
- Getting Started:
- init: docs/commands/init.md
- docs: docs/commands/docs.md
- Develop:
- app init: docs/commands/app-init.md
- app ls: docs/commands/app-ls.md
- app show: docs/commands/app-show.md
- app delete: docs/commands/app-delete.md
- env init: docs/commands/env-init.md
- env ls: docs/commands/env-ls.md
- env show: docs/commands/env-show.md
- env delete: docs/commands/env-delete.md
- job init: docs/commands/job-init.md
- job ls: docs/commands/job-ls.md
- job package: docs/commands/job-package.md
- job deploy: docs/commands/job-deploy.md
- job delete: docs/commands/job-delete.md
- svc init: docs/commands/svc-init.md
- svc ls: docs/commands/svc-ls.md
- svc show: docs/commands/svc-show.md
- svc logs: docs/commands/svc-logs.md
- svc status: docs/commands/svc-status.md
- svc package: docs/commands/svc-package.md
- svc deploy: docs/commands/svc-deploy.md
- svc delete: docs/commands/svc-delete.md
- task run: docs/commands/task-run.md
- Release:
- pipeline init: docs/commands/pipeline-init.md
- pipeline update: docs/commands/pipeline-update.md
- pipeline ls: docs/commands/pipeline-ls.md
- pipeline show: docs/commands/pipeline-show.md
- pipeline status: docs/commands/pipeline-status.md
- pipeline delete: docs/commands/pipeline-delete.md
- deploy: docs/commands/deploy.md
- Addons:
- storage init: docs/commands/storage-init.md
- Settings:
- version: docs/commands/version.md
- completion: docs/commands/completion.md
- Community:
- Get Involved: community/get-involved.md
- Guides and resources: community/guides.md
theme:
name: material
custom_dir: site/overrides
palette:
primary: white
font: false
icon:
logo: octicons/terminal-16
favicon: assets/images/cli.png
features:
- tabs
- instant
markdown_extensions:
- admonition
- pymdownx.details
- pymdownx.superfences
- pymdownx.tabbed
- pymdownx.emoji:
emoji_index: !!python/name:materialx.emoji.twemoji
emoji_generator: !!python/name:materialx.emoji.to_svg
options:
custom_icons:
- site/overrides/.icons
plugins:
- search
- redirects:
redirect_maps:
'docs/installing.md': 'docs/getting-started/install.md'
'docs/getting-started.md': 'docs/getting-started/first-app-tutorial.md'