Add makefile and update readme
This commit is contained in:
parent
36a11af084
commit
49fcaa3e85
|
@ -0,0 +1,10 @@
|
|||
all: build
|
||||
|
||||
init:
|
||||
bundle
|
||||
|
||||
dev: init
|
||||
bundle exec middleman server
|
||||
|
||||
build: init
|
||||
bundle exec middleman build
|
|
@ -11,12 +11,7 @@ If you find a typo or you feel like you can improve the HTML, CSS, or JavaScript
|
|||
Running the Site Locally
|
||||
------------------------
|
||||
|
||||
Running the site locally is simple. Clone this repo and run the following commands:
|
||||
|
||||
```
|
||||
$ bundle
|
||||
$ bundle exec middleman server
|
||||
```
|
||||
Running the site locally is simple. Clone this repo and run `make dev`.
|
||||
|
||||
Then open up `localhost:4567`. Note that some URLs you may need to append ".html" to make them work (in the navigation and such).
|
||||
|
||||
|
|
Loading…
Reference in New Issue