No Description

Steven Jacobs d8f85bf644 update repo references 3 years ago
src 78acf9cc6a cargo fmt v0.9 changes 5 years ago
.gitignore ea6354c814 init project 6 years ago
Cargo.lock 83907adcb6 remove unused dependencies 5 years ago
Cargo.toml 83907adcb6 remove unused dependencies 5 years ago
README.md d8f85bf644 update repo references 3 years ago

README.md

linode-curses

An ncurses-ish Linode Manager

Development

Dependencies

Getting Started

# first, download the in-progress rust library
# it is included by relative path to the linode-curses project
$ git clone https://git.stj.io/stjacobs/linode-rs.git
$ git clone https://git.stj.io/stjacobs/linode-curses.git
$ cd linode-curses
$ LINODE_API_TOKEN=$(cat ~/.linode.token) cargo run

Contributing

Code should be run through clippy.

# install
$ rustup run nightly cargo install clippy

# run on project code
$ LINODE_API_TOKEN=$(cat ~/.linode.token) cargo +nightly clippy

Code should be formatted with rustfmt.

# install
$ rustup run nightly cargo install rustfmt

# run on project code
$ cargo +nightly fmt