Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
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
Adding a nodekit script as a commandline shortcut to start the server.
  • Loading branch information
sfsekaran committed May 24, 2011
commit 169a7d85abd6cf452c6cf6f60c01a0606ef818e3
4 changes: 2 additions & 2 deletions Readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -42,7 +42,7 @@ Unfortunately, TermKit currently requires some assembly.
4. Install node-mime: `npm install mime`
5. Clone the TermKit repository: `git clone https://github.com/unconed/TermKit.git --recursive`
6. Users of older git versions will need to type: `git submodule update --init`
7. Run the NodeKit daemon: `cd TermKit/Node; node nodekit.js`
7. Run the NodeKit daemon: `TermKit/bin/nodekit` or `cd TermKit/Node; node nodekit.js`
8. Unzip and run the Mac app in Build/TermKit.zip

*Tip:* Press ⌥⌘C to access the WebKit console.
Expand All @@ -51,4 +51,4 @@ Includes:

* “NSImage+QuickLook” by Matt Gemmell (http://mattgemmell.com/source).
* SyntaxHighlighter by Alex Gorbatchev (http://alexgorbatchev.com/SyntaxHighlighter/)
* jQuery and jQuery UI
* jQuery and jQuery UI
3 changes: 3 additions & 0 deletions bin/nodekit
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
#!/bin/bash
DIRECTORY=$(cd `dirname $0` && cd .. && pwd)
cd $DIRECTORY/Node; node nodekit.js