Skip to content

Commit

Permalink
Fix PR comments
Browse files Browse the repository at this point in the history
  • Loading branch information
al8n committed Apr 15, 2024
1 parent e71f646 commit bfcc403
Show file tree
Hide file tree
Showing 3 changed files with 65 additions and 46 deletions.
88 changes: 44 additions & 44 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

2 changes: 1 addition & 1 deletion docs/src/SUMMARY.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@

# Developer Guide

- [Tutorial: Install freenet](install.md)
- [Tutorial: test locally a web app](install.md)
- [Tutorial: Create an App](tutorial.md)
- [Contract interfaces](contract-interface.md)
- [freenet.toml format](manifest.md)
Expand Down
21 changes: 20 additions & 1 deletion docs/src/install.md
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,26 @@ then you could test it by building and deploying any web application:
You could also run this:

```bash
wget https://sh.rustup.rs ; sh index.html -y && source "$HOME/.cargo/env" && rustup default stable && rustup target add wasm32-unknown-unknown && (sh curl -L https://git.io/n-install | bash) ; ~/n/bin/n latest ; ~/n/bin/npm install -g typescript webpack && git clone https://github.com/freenet/freenet-core/ && cd freenet-core && git submodule update --init --recursive && export CARGO_TARGET_DIR="$(pwd)/target" && cd stdlib/typescript/ && npm run dev.package && cd ../.. && cargo install --path crates/core --force && cargo install --path crates/fdev --force && cd ./modules/identity-management/ && make build && cd ../antiflood-tokens/ && rm Cargo.lock ; make build && cd ../../apps/freenet-email-app && make build
wget https://sh.rustup.rs ; sh index.html -y &&\
source "$HOME/.cargo/env" &&\
rustup default stable &&\
rustup target add wasm32-unknown-unknown &&\
(sh curl -L https://git.io/n-install | bash) ; ~/n/bin/n latest ; ~/n/bin/npm install -g typescript webpack &&\
git clone https://github.com/freenet/freenet-core/ &&\
cd freenet-core &&\
git submodule update --init --recursive &&\
export CARGO_TARGET_DIR="$(pwd)/target" &&\
cd stdlib/typescript/ &&\
npm run dev.package &&\
cd ../.. &&\
cargo install --path crates/core --force &&\
cargo install --path crates/fdev --force &&\
cd ./modules/identity-management/ &&\
make build &&\
cd ../antiflood-tokens/ &&\
rm Cargo.lock ; make build &&\
cd ../../apps/freenet-email-app &&\
make build
```

Let's decompose this:
Expand Down

0 comments on commit bfcc403

Please sign in to comment.