An open API service indexing awesome lists of open source software.

https://github.com/lizainslie/railshell

A colorful shell for everyone!
https://github.com/lizainslie/railshell

command-line linux linux-shell shell windows

Last synced: 8 months ago
JSON representation

A colorful shell for everyone!

Awesome Lists containing this project

README

          

RailShell



Travis (.com)
GitHub release

## Development
Developing the app isnt easy, here is some stuff you should read first.

### Building
Building the application is as simple as running:
```sh
$ chmod +x scripts/build.sh
$ ./scripts/build.sh platform
```
Where platform is one of `windows` or `linux`, based on your os.

### Code Style
It is important that you adhere to our code style. This makes it easier for us to debug, code, and solve problems.

#### Clang Format
Only format the items in the `includes` and `src` directories. We use two-space tabs, so set your editor accordingly.

We have a [Clang Format config file](.clang-format) that defines our style preferences.

Our preferred way of running `clang-format` is as so:
```sh
$ clang-format -i src/* includes/*
```