Code generator to simplify creating a built-in Parity Dapp
Clone this repository.
bash
$ git clone https://github.com/ethcore/parity.git
Create a new directory for your Dapp. (./myapp
)
bash
$ mkdir -p ./parity/dapps/myapp/src/web
Copy your frontend files to ./dapps/myapp/src/web
(bundled ones)
bash
$ cp -r ./myapp-src/* ./parity/dapps/myapp/src/web
Instead of creating web3
in your app. Load (as the first script tag in head
):
```html
```
The inject.js
script will create global web3
instance with proper provider that should be used by your dapp.
Create ./parity/dapps/myapp/Cargo.toml
with you apps details. See example here: parity-status Cargo.toml.
```bash $ git clone https://github.com/ethcore/parity-ui.git $ cd ./parity-ui/ $ cp ./home/Cargo.toml ../parity/dapps/myapp/Cargo.toml $ cp ./home/build.rs ../parity/dapps/myapp/build.rs $ cp ./home/src/lib.rs ../parity/dapps/myapp/src/lib.rs $ cp ./home/src/lib.rs.in ../parity/dapps/myapp/src/lib.rs.in
$ vim ../parity/dapps/myapp/Cargo.toml # Edit the details $ vim ./parity/dapps/myapp/src/lib.rs.in # Edit the details ```
Parity
?Edit dapps/Cargo.toml
and add dependency to your application (it can be optional)
```toml
parity-dapps-myapp = { path="./myapp" } ```
Edit dapps/src/apps.rs
and add your application to all_pages
(if it's optional you need to specify two functions - see parity-dapps-wallet
example)
Compile parity.
bash
$ cargo build --release # While inside `parity`
Commit the results.
bash
$ git add myapp && git commit -am "My first Parity Dapp".