https://github.com/jaredramirez/teleport
Project to learn how to write a CLI in Haskell, inspired by https://bollu.github.io/teleport
https://github.com/jaredramirez/teleport
Last synced: 3 months ago
JSON representation
Project to learn how to write a CLI in Haskell, inspired by https://bollu.github.io/teleport
- Host: GitHub
- URL: https://github.com/jaredramirez/teleport
- Owner: jaredramirez
- License: bsd-3-clause
- Created: 2018-03-01T03:08:40.000Z (over 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-03T22:27:09.000Z (over 7 years ago)
- Last Synced: 2025-01-11T03:52:23.955Z (5 months ago)
- Language: Haskell
- Homepage:
- Size: 1.03 MB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# teleport
> Project to learn how to write a CLI in Haskell, inspired by https://bollu.github.io/teleport/
## Usage
`teleport add NAME`
* Add a warp location called `NAME` pointing to the current directory
`teleport warp NAME`
* Warp to the location associated with `NAME`
`teleport rm NAME`
* Remove the warp location called `NAME`
## Building/Running it locally
* Install [Stack](https://docs.haskellstack.org/en/stable/README/)
* Pull down repo `git clone https://github.com/jaredramirez/teleport.git`
* `cd teleport`
* `./scripts/build.sh` (this make take a while since it will download all of this project's dependecies)
* `./scripts/run.sh`## Other things
While the idea for this project is a direct copy from https://bollu.github.io/teleport/, this implementation is unique and unrelated to bollu's project