Skip to content
This repository was archived by the owner on Feb 16, 2021. It is now read-only.

IFrame security analysis pages #17

Merged
merged 3 commits into from
Dec 8, 2014
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Updated the Makefile to host via Jekyll
  • Loading branch information
JamesMGreene committed Dec 8, 2014
commit 641945bd2ae2c58458ecad85bfea0ee486bb6209
15 changes: 10 additions & 5 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
VERSION = 1.3.3
VERSION = 2.1.6
PORT = 3000

all: \
gem \
server \
serve \

gem:
bundle install
Expand All @@ -19,7 +19,12 @@ commit: update
git commit -a -m "Update demo files to latest changes."
git push

server: update
open "http://localhost:$(PORT)/" && node node_server.js
browse:
open "http://localhost:$(PORT)/"

.PHONY: all update commit server
server:
bundle exec jekyll serve --port $(PORT)

serve: update browse server

.PHONY: all gem update commit browse server serve