-
Notifications
You must be signed in to change notification settings - Fork 158
/
Copy pathcli.doc.ts
132 lines (129 loc) · 4.53 KB
/
cli.doc.ts
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
131
132
import {LandingTemplateSchema} from '@shopify/generate-docs'
const data: LandingTemplateSchema = {
title: 'Shopify CLI',
description:
'Shopify CLI is a command-line interface tool that helps you generate and work with Shopify apps, themes and custom storefronts. You can also use it to automate many common development tasks.',
id: 'Shopify CLI',
image: '/assets/landing-pages/templated-apis/web-pixels-api/landing-page.png',
darkImage: '/assets/landing-pages/templated-apis/web-pixels-api/landing-page.png',
sections: [
{
type: 'Generic',
anchorLink: 'requirements',
title: 'Requirements',
sectionContent: `
- [Node.js](https://nodejs.org/en/download/): 18.20+, 20.10 or higher
- A Node.js package manager: [npm](https://www.npmjs.com/get-npm), [Yarn 1.x](https://classic.yarnpkg.com/lang/en/docs/install), or [pnpm](https://pnpm.io/installation).
- [Git](https://git-scm.com/downloads): 2.28.0 or higher
`,
},
{
type: 'Generic',
anchorLink: 'installation',
title: 'Installation',
sectionContent:
'This installs Shopify CLI globally on your system, so you can run `shopify` commands from any directory. Find out more about the available commands by running `shopify` in your terminal.',
codeblock: {
title: '',
tabs: [
{
title: 'npm',
code: 'examples/install.npm.example.sh',
language: 'bash',
},
{
title: 'yarn',
code: 'examples/install.yarn.example.sh',
language: 'bash',
},
{
title: 'pnpm',
code: 'examples/install.pnpm.example.sh',
language: 'bash',
},
{
title: 'homebrew (macOS)',
code: 'examples/install.brew.example.sh',
language: 'bash',
},
],
},
},
{
type: 'Generic',
anchorLink: 'commands',
title: 'Commands',
sectionContent: `
Shopify CLI groups commands into topics. The command syntax is: \`shopify [topic] [command]\`.
Refer to each topic section in the sidebar for a list of available commands.
Or, run the \`help\` command to get this information right in your terminal.
`,
codeblock: {
title: 'terminal',
tabs: [
{
code: 'examples/help.example.sh',
language: 'bash',
},
],
},
},
{
type: 'Generic',
anchorLink: 'upgrade',
sectionContent:
'We recommend that you always use the latest version of Shopify CLI if possible. To upgrade, run `version` to check the current version and determine if there are any updates available. Run the [install](#installation) command to upgrade to the latest CLI version.',
title: 'Upgrade Shopify CLI',
codeblock: {
title: 'terminal',
tabs: [
{
code: 'examples/upgrade.example.sh',
language: 'bash',
},
],
},
},
{
type: 'Generic',
anchorLink: 'reporting',
title: 'Usage reporting',
sectionContent: `Anonymous usage statistics are collected by default. To opt out, you can use the environment variable \`SHOPIFY_CLI_NO_ANALYTICS=1\`.`,
},
{
type: 'Generic',
anchorLink: 'contribute',
title: 'Contribute to Shopify CLI',
sectionContent: `Shopify CLI is open source. [Learn how to contribute](https://github.com/Shopify/cli/wiki/Contributors:-Introduction) to our GitHub repository.`,
},
{
type: 'Generic',
anchorLink: 'help',
title: 'Where to get help',
sectionContent: `
- [Shopify Community Forums](https://community.shopify.com/) - Visit our forums to connect with the community and learn more about Shopify CLI development.
- [Open a GitHub issue](https://github.com/shopify/cli/issues) - To report bugs or request new features, open an issue in the Shopify CLI repository.
`,
},
{
type: 'Resource',
anchorLink: 'resources',
title: 'Resources',
resources: [
{
name: 'Start building a theme',
subtitle: 'Learn how to set up your theme development environment and create a new theme',
url: '/docs/themes/getting-started/create',
type: 'component',
},
{
name: 'Start building an app',
subtitle: 'Learn how to set up your app development environment and start building',
url: '/docs/apps/getting-started/create',
type: 'tutorial',
},
],
},
],
}
export default data