https://github.com/oscarmorrison/openwaffle
🍯 openWaffle from you CLI within the project repo
https://github.com/oscarmorrison/openwaffle
Last synced: 4 months ago
JSON representation
🍯 openWaffle from you CLI within the project repo
- Host: GitHub
- URL: https://github.com/oscarmorrison/openwaffle
- Owner: oscarmorrison
- License: mit
- Created: 2016-06-05T16:43:47.000Z (almost 10 years ago)
- Default Branch: master
- Last Pushed: 2016-06-05T16:54:01.000Z (almost 10 years ago)
- Last Synced: 2025-06-11T10:56:52.608Z (12 months ago)
- Homepage:
- Size: 2.93 KB
- Stars: 4
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
openWaffle
===============
open Waffle.io project board from CLI.
A small bash script that opens your project page on waffle from within a repository.
This is useful if you are often opening [Waffle.io](http://waffle.io) to create or view issues.
## Instructions ##
To use this script add to a folder in your path. I have a directory called ```.scripts``` in my home directory.
It is important to add this to your path (.bash_profile or .bash_rc)
```
cd ~
mkdir .scripts
vim bash_profile
```
then add
```
PATH="PATH=$PATH:$HOME/.scripts"
export PATH
```
You then need to refresh your profile
You can do this by typing
```
source .bash_profile
```
Next you need to clone or download the script:
clone repo:
```
git clone https://github.com/oscarmorrison/openWaffle.git
```
or download:
```
curl -O https://raw.githubusercontent.com/oscarmorrison/openWaffle/master/openWaffle
```
to your new scripts directory
now you need to make executable
```
chmod 775 openWaffle
```
Now all you need to do is go to a github repo that has a waffle project and type
```
openWaffle
```
and it will open your browser to the waffle project.
Enjoy!