Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

docs: 📝 Remove deprecated yarn command #67

Merged
merged 1 commit into from
Jan 2, 2025
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 5 additions & 5 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -8,21 +8,21 @@ The Fleek Network documentation and guides source.
### 🤖 Installation

```
yarn
npm i
```

### 🏠 Local Development

```
yarn start
npm run start
```

This command starts a local development server and opens up a browser window. Most changes are reflected live without having to restart the server.

### 👷 Build

```
yarn build
npm run build
```

This command generates static content into the `build` directory and can be served using any static contents hosting service.
Expand All @@ -44,7 +44,7 @@ Any new commit into the `main` branch will trigger the [Deploy (Github pages)](h
Alternatively, to publish manually to `gh_pages` use the `deploy` command. Here we prefix the command with the optional variables.

```sh
USE_SSH=true GIT_USER=<Your github username> yarn deploy
USE_SSH=true GIT_USER=<Your github username> npm run deploy
```

💡 The command requires you to have Git authenticated via ssh.
Expand Down Expand Up @@ -76,7 +76,7 @@ API_KEY=<YOUR API KEY>
Then you need to start the crawl according to your configuration.

```
yarn crawl:docker
npm run crawl:docker
```

### 👩‍🎨 Custom domain
Expand Down
Loading