Skip to content

Commit d241e87

Browse files
committed
Update deploy doc
Signed-off-by: macdonst <simon.macdonald@gmail.com>
1 parent 9f15e40 commit d241e87

File tree

1 file changed

+17
-11
lines changed

1 file changed

+17
-11
lines changed

app/docs/md/deployment/begin.md

+17-11
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ title: Begin
88

99
Install the Begin CLI by opening your terminal and entering the following command:
1010

11-
- Mac, Linux: `curl -sS https://dl.begin.com/install.sh | sh`
12-
- Then follow the printed instructions to add Begin to your `$PATH`.
13-
- Windows: `iwr https://dl.begin.com/install.ps1 -useb | iex`
11+
```bash
12+
npm i --global @begin/deploy
13+
```
1414

1515
### Generate a new project
1616

@@ -54,18 +54,24 @@ Create a real HTML form for CRUDL (create, read, update, destroy, and list) back
5454
npx enhance generate scaffold Cat name:string birthday:date email:email
5555
```
5656

57-
### Deploy
57+
### Log in
5858

59-
<doc-callout level="caution" mark="🛠️">
59+
Create a Begin account by running the following command in your terminal, then following the instructions to authorize with GitHub.
6060

61-
The new version of Begin is under active development and not yet generally available.
62-
Account registration and `deploy` features will not work.
63-
In the meantime, you can still use the `begin` CLI, `dev` Sandbox, and generators.
61+
```bash
62+
npx begin login
63+
```
6464

65-
Sign up for early access at [Begin.com](https://begin.com).
65+
### Deploy
6666

67-
</doc-callout>
67+
Time to ship your brand new project to a fresh environment!
6868

6969
```bash
70-
begin deploy
70+
npx begin deploy
7171
```
72+
73+
<doc-callout level="info" mark="📖">
74+
75+
Read more about how automating releases via [GitHub Actions](https://begin.com/deploy/docs/getting-started/github-actions).
76+
77+
</doc-callout>

0 commit comments

Comments
 (0)