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!
- Host: GitHub
- URL: https://github.com/lizainslie/railshell
- Owner: LizAinslie
- Created: 2019-06-01T01:22:08.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2019-06-12T20:21:55.000Z (over 6 years ago)
- Last Synced: 2024-12-27T20:33:50.244Z (9 months ago)
- Topics: command-line, linux, linux-shell, shell, windows
- Language: C++
- Homepage:
- Size: 32.2 KB
- Stars: 1
- Watchers: 0
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
RailShell
![]()
![]()
## 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/*
```