rust and project meta
commit
ae64060e36
@ -0,0 +1 @@
|
|||||||
|
/target
|
File diff suppressed because it is too large
Load Diff
@ -0,0 +1,16 @@
|
|||||||
|
[package]
|
||||||
|
name = "wownero-explorer"
|
||||||
|
version = "0.1.0"
|
||||||
|
authors = ["lza_menace <lza_menace@protonmail.com>"]
|
||||||
|
edition = "2018"
|
||||||
|
|
||||||
|
[dependencies]
|
||||||
|
rocket = "0.4.4"
|
||||||
|
rocket_contrib = {version = "0.4.4", features = ["handlebars_templates", "tera_templates"]}
|
||||||
|
serde = "1.0"
|
||||||
|
serde_json = "1.0"
|
||||||
|
serde_derive = "1.0"
|
||||||
|
reqwest = { version = "0.10.4", features = ["blocking", "json"] }
|
||||||
|
openssl = { version = "0.10", features = ["vendored"] }
|
||||||
|
qrcode-generator = "1.0.6"
|
||||||
|
base64 = "0.12.0"
|
@ -0,0 +1,11 @@
|
|||||||
|
## Wownero Explorer
|
||||||
|
|
||||||
|
Web interface for searching the Wownero blockchain.
|
||||||
|
|
||||||
|
## Running
|
||||||
|
|
||||||
|
1. Install Rust: https://www.rust-lang.org/tools/install
|
||||||
|
2. Clone this repo: `git clone https://git.wownero.com/lza_menace/wownero-explorer && cd wownero-explorer`
|
||||||
|
3. Pin the nightly version of rust to the local directory: `rustup override set nightly`
|
||||||
|
4. [Pick a Wownero node](https://wownero.com) if you don't have one and apply the `DAEMON_URI` environment variable: `export DAEMON_URI=http://so.wow.candy.surf:34568`
|
||||||
|
5. Run the application: `cargo run`
|
Loading…
Reference in New Issue