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

chore: remove subgraph from fleek and readme #201

Merged
merged 2 commits into from
Oct 23, 2024
Merged
Show file tree
Hide file tree
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
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@
# Generated files
.docusaurus
.cache-loader
**/subgraph/reference-guide
/static/optimized-svg

# Misc
Expand Down
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,15 +40,15 @@ $ yarn build

This command generates static content into the `build` directory and can be served using any static contents hosting service.

Notice: you may need to run `yarn optimize-svg` and `yarn docs:subgraph` before `yarn build` or `yarn start` to correctly build this website.
Notice: you may need to run `yarn optimize-svg` before `yarn build` or `yarn start` to correctly build this website.

### Serve All Optimized Assets

```bash
$ yarn serve:all-optimized
```

This command runs all the necessary commands to serve the website from scratch. It installs all the needed libraries, generates the Subgraph documentation, and then builds and serves the website, locally, with all optimized assets.
This command runs all the necessary commands to serve the website from scratch. It installs all the needed libraries, and then builds and serves the website, locally, with all optimized assets.

### Deployment

Expand Down
2 changes: 1 addition & 1 deletion fleek_master.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": {
"baseDir": "",
"publicDir": "build/",
"command": "yarn && yarn docs:subgraph && yarn optimize-svg && yarn build",
"command": "yarn && yarn optimize-svg && yarn build",
"rootDir": ""
}
}
2 changes: 1 addition & 1 deletion fleek_staging.json
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
"build": {
"baseDir": "",
"publicDir": "build/",
"command": "yarn && yarn docs:subgraph && yarn optimize-svg && yarn build",
"command": "yarn && yarn optimize-svg && yarn build",
"rootDir": ""
}
}