Skip to content
This repository has been archived by the owner on Nov 19, 2020. It is now read-only.

Commit

Permalink
Added blyth command
Browse files Browse the repository at this point in the history
  • Loading branch information
ryangittings committed Mar 13, 2020
1 parent 3e5c2aa commit fe6da8d
Show file tree
Hide file tree
Showing 2 changed files with 23 additions and 2 deletions.
22 changes: 21 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
Expand Up @@ -10,4 +10,24 @@ This is the pure CSS framework for speed and flexibility. It uses CSS variables,

## To Do

- Add minification
- Add minification

## Creating a command (Mac)

You can create a helper command to quickly spin up new Blyth projects using `blyth your-project-name`. To do this:

- Create new command file, `touch ~/.my_custom_commands.sh`
- Open the file using nano, `sudo nano ~/.my_custom_commands.sh`
- Add the following:
```
function blyth() {
git clone [email protected]:ryangittings/blyth.git $1
cd $1
rm -rf .git
}
```
- Open `~/.bashrc` or `~/.zshrc` using any text editor you have
- Add `source ~/.my_custom_commands.sh`
- Save file
- Refresh config file, `source ~/.bashrc` or `. ~/.zshrc`
- Done!
3 changes: 2 additions & 1 deletion assets/css/app.min.css

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

0 comments on commit fe6da8d

Please sign in to comment.