PaperTrader/README.md

1.4 KiB
Executable File

Rust

PaperTrader

The opensource cross-platform paper trader for learning to trade assets.

Getting Started

Developers

Make Sure you have Cargo. To get a copy of the source code for development:

$ git clone https://github.com/realaltffour/PaperTrader.git

Build command, Server:

$ cargo build --no-default-features --features "server"

Build command, Client:

$ cargo build --no-default-features --features "client"

Build command, Hybrid:

$ cargo build --no-default-features --features "server,client"

Running sandbox:

$ sudo ./scripts/remove_db.sh
$ sudo ./scripts/deploy_sandbox.sh
$ cargo run --no-default-features --features "server" -- 0.0.0.0:4000 
	--cert certs/certificate.crt --key private.key &
$ cargo run --no-default-features --features "client,tls_no_verify" &

Built With

Authors:

License

This project licensed under GPL v3.0 - see the LICENSE file for details