Skip to content

Adding a nodekit script as a commandline shortcut to start the server. #52

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 1 commit into
base: master
Choose a base branch
from
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
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