-
Notifications
You must be signed in to change notification settings - Fork 42
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
2 changed files
with
143 additions
and
1 deletion.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,44 @@ | ||
# Madara CLI | ||
|
||
A CLI tool to quickly deploy Madara app chains. | ||
A command-line tool for rapid deployment of Madara app chains. | ||
|
||
## Dependencies | ||
|
||
There are a few dependencies that need to be installed to smoothly use `madara-cli`. | ||
|
||
[Installing dependencies](./docs/setup.md) | ||
|
||
## Quick Start | ||
|
||
- Clone repo: | ||
|
||
```bash | ||
git clone https://github.com/karnotxyz/madara-cli | ||
``` | ||
|
||
- Build repo: | ||
|
||
```bash | ||
cd madara-cli | ||
cargo build --release | ||
``` | ||
|
||
- Initialize a new app chain. Please fund the DA account (if applicable): | ||
|
||
```bash | ||
./target/release/madara init | ||
``` | ||
|
||
- Run your app chain: | ||
|
||
```bash | ||
./target/release/madara run | ||
``` | ||
|
||
- Optionally, explore the StarkCompass explorer. Accessible at [http://localhost:4000](http://localhost:4000). | ||
|
||
```bash | ||
./target/release/madara explorer | ||
``` | ||
|
||
**Congratulations! You now have a custom madara app running.** |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,101 @@ | ||
# Installing Dependencies | ||
|
||
## Install `Git` | ||
|
||
Install the latest `git` version | ||
|
||
Instruction can be found on the [official site](https://git-scm.com/book/en/v2/Getting-Started-Installing-Git). | ||
|
||
Verify the `git` installation: | ||
|
||
```bash | ||
git --version | ||
git version 2.34.1 | ||
``` | ||
|
||
## `Install Rust` | ||
|
||
Install the latest `rust` version. | ||
|
||
Instructions can be found on the [official site](https://www.rust-lang.org/tools/install). | ||
|
||
Verify the `rust` installation: | ||
|
||
```bash | ||
rustc --version | ||
rustc 1.75.0 (82e1608df 2023-12-21) | ||
``` | ||
|
||
## `Docker` | ||
|
||
Install `docker`. It is recommended to follow the instructions from the | ||
[official site](https://docs.docker.com/install/). | ||
|
||
Installing `docker` via `snap` or from the default repository can cause troubles. | ||
|
||
**Note:** On linux you may encounter the following error when you’ll try to work with `madara-cli`: | ||
|
||
```bash | ||
ERROR: Couldn't connect to Docker daemon - you might need to run `docker-machine start default`. | ||
``` | ||
If so, you **do not need** to install `docker-machine`. Most probably, it means that your user is not added to | ||
the`docker` group. You can check it as follows: | ||
```bash | ||
docker-compose up # Should raise the same error. | ||
sudo docker-compose up # Should start doing things. | ||
``` | ||
If the first command fails, but the second succeeds, then you need to add your user to the `docker` group: | ||
```bash | ||
sudo usermod -a -G docker your_user_name | ||
``` | ||
After that, you should logout and login again (user groups are refreshed after the login). The problem should be | ||
solved at this step. | ||
If logging out does not help, restarting the computer should. | ||
**Additionally, there are a few more dependencies required by madara for building various crates and related dependencies.**. | ||
## `Ubuntu` | ||
These are only required on ubuntu systems. | ||
```bash | ||
sudo apt update | ||
sudo apt upgrade | ||
sudo apt install build-essential | ||
sudo apt install pkg-config | ||
sudo apt install libssl-dev | ||
sudo apt install clang | ||
sudo apt install protobuf-compiler | ||
``` | ||
## `MacOS` | ||
Verify `brew` installation: | ||
```bash | ||
brew --version | ||
Homebrew 4.2.2 | ||
``` | ||
If brew is not found, install using following command: | ||
```bash | ||
/bin/bash -c "$(curl -fsSL https://raw.githubusercontent.com/Homebrew/install/HEAD/install.sh)" | ||
``` | ||
Then install the following: | ||
```bash | ||
brew install pkg-config | ||
brew install openssl | ||
brew install protobuf | ||
``` | ||
**Make sure to follow these instructions to ensure a smooth setup for `madara`.** |