You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: src/content/docs/learning-paths/workers/get-started/c3-and-wrangler.mdx
+6-7Lines changed: 6 additions & 7 deletions
Display the source diff
Display the rich diff
Original file line number
Diff line number
Diff line change
@@ -3,7 +3,6 @@ title: C3 & Wrangler
3
3
pcx_content_type: learning-unit
4
4
sidebar:
5
5
order: 1
6
-
7
6
---
8
7
9
8
Before deploying your first Worker, learn about the CLI tools you will use to build and deploy your Worker project.
@@ -16,8 +15,8 @@ You can build and develop your Worker on the Cloudflare dashboard, without needi
16
15
17
16
The Cloudflare Developer Platform ecosystem has two command-line interfaces (CLI):
18
17
19
-
* C3: To create new projects.
20
-
* Wrangler: To build and deploy your projects.
18
+
- C3: To create new projects.
19
+
- Wrangler: To build and deploy your projects.
21
20
22
21
## C3
23
22
@@ -35,15 +34,15 @@ When you run C3 to create your project, C3 will install the latest version of Wr
35
34
36
35
## Source of truth
37
36
38
-
If you are building your Worker on the Cloudflare dashboard, you will set up your project configuration (such as environment variables, bindings, and routes) through the dashboard. If you are building your project programmatically using C3 and Wrangler, you will rely on a [`wrangler.toml`](/workers/wrangler/configuration/) file to configure your Worker.
37
+
If you are building your Worker on the Cloudflare dashboard, you will set up your project configuration (such as environment variables, bindings, and routes) through the dashboard. If you are building your project programmatically using C3 and Wrangler, you will rely on a [`wrangler.json`/`wrangler.toml`](/workers/wrangler/configuration/) file to configure your Worker.
39
38
40
-
Cloudflare recommends choosing and using one [source of truth](/workers/wrangler/configuration/#source-of-truth), the dashboard or `wrangler.toml`, to avoid errors in your project.
39
+
Cloudflare recommends choosing and using one [source of truth](/workers/wrangler/configuration/#source-of-truth), the dashboard or `wrangler.json`/`wrangler.toml`, to avoid errors in your project.
41
40
42
41
## Summary
43
42
44
43
By reading this page, you have learned:
45
44
46
-
* How to use C3 to create new Workers and Pages projects.
47
-
* How to use Wrangler to develop, configure, and delete your projects.
45
+
- How to use C3 to create new Workers and Pages projects.
46
+
- How to use Wrangler to develop, configure, and delete your projects.
48
47
49
48
In the next section, you will learn more about the Cloudflare dashboard before moving on to deploy your first Worker.
Cloudflare provides a CLI command for creating new Workers and Pages projects — `npm create cloudflare`, powered by the [`create-cloudflare` package](https://www.npmjs.com/package/create-cloudflare).
0 commit comments