Skip to content

Commit

Permalink
[dist] Regen.
Browse files Browse the repository at this point in the history
  • Loading branch information
jfhbrook committed Dec 21, 2011
1 parent 8852b32 commit 58fe59b
Show file tree
Hide file tree
Showing 4 changed files with 57 additions and 10 deletions.
17 changes: 15 additions & 2 deletions ReadMe.md
Expand Up @@ -387,10 +387,16 @@ accounts. You will be prompted for additional user information as required.
bin node_modules package.json ReadMe.md


## .jitsuconf file
## Configuring jitsu

All configuration data for your local jitsu install is located in the *.jitsuconf* file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using `jitsu config`.
All user-level configuration data for your local jitsu install is located in the *.jitsuconf* file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using `jitsu config`.

### Selected Properties of .jitsuconf

* *loglength*: Change this to modify the default length of returned logs from `jitsu logs`.
* *loglevel*: Change this to modify the logging levels displayed by jitsu. Defaults to "info".
* *colors*: Change this to false to turn off jitsu's colors. Defaults to `true`.
* *analyze*: Change this to false to disable require-analyzer for all apps. Defaults to `true`.
# Nodejitsu Web Application
<a name='webapp'></a>

Expand Down Expand Up @@ -670,6 +676,13 @@ The ability to host tcp applications on nodejitsu and listen on non-80 ports is

Yes! For directions on how to set up a custom domain with Nodejitsu, [go here](http://dns.nodejitsu.com).

## "How can I turn off the require-analyzer in jitsu? I want to manage my own dependencies!"

There are three ways to disable the require-analyzer:

* Use the `--noanalyze` flag when running jitsu commands to disable it on a one-time basis.
* Add `"analyze": false` to your package.json to disable it on a per-app basis.
* Set "analyze" to `false` in your `~/.jitsuconf` to disable it on a global level.

## "Why won't this C++ addon compile?"

Expand Down
29 changes: 25 additions & 4 deletions book.html
Expand Up @@ -442,9 +442,19 @@ <h3 id="jitsu-install">jitsu install</h3>
bin node_modules package.json ReadMe.md
</code></pre>

<h2 id="-jitsuconf-file">.jitsuconf file</h2>
<h2 id="Configuring-jitsu">Configuring jitsu</h2>

<p>All user-level configuration data for your local jitsu install is located in the <em>.jitsuconf</em> file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using <code>jitsu config</code>.</p>

<h3 id="Selected-Properties-of-jitsuconf">Selected Properties of .jitsuconf</h3>

<ul>
<li><em>loglength</em>: Change this to modify the default length of returned logs from <code>jitsu logs</code>.</li>
<li><em>loglevel</em>: Change this to modify the logging levels displayed by jitsu. Defaults to "info".</li>
<li><em>colors</em>: Change this to false to turn off jitsu's colors. Defaults to <code>true</code>.</li>
<li><em>analyze</em>: Change this to false to disable require-analyzer for all apps. Defaults to <code>true</code>.</li>
</ul>

<p>All configuration data for your local jitsu install is located in the <em>.jitsuconf</em> file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using <code>jitsu config</code>.</p>

</div>
<div class='mp'>
Expand Down Expand Up @@ -767,6 +777,17 @@ <h2 id="-How-can-I-point-my-custom-domain-to-my-nodejitsu-app-">"How can I point

<p>Yes! For directions on how to set up a custom domain with Nodejitsu, <a href="http://dns.nodejitsu.com">go here</a>.</p>

<h2 id="-How-can-I-turn-off-the-require-analyzer-in-jitsu-I-want-to-manage-my-own-dependencies-">"How can I turn off the require-analyzer in jitsu? I want to manage my own dependencies!"</h2>

<p>There are three ways to disable the require-analyzer:</p>

<ul>
<li>Use the <code>--noanalyze</code> flag when running jitsu commands to disable it on a one-time basis.</li>
<li>Add <code>"analyze": false</code> to your package.json to disable it on a per-app basis.</li>
<li>Set "analyze" to <code>false</code> in your <code>~/.jitsuconf</code> to disable it on a global level.</li>
</ul>


<h2 id="-Why-won-t-this-C-addon-compile-">"Why won't this C++ addon compile?"</h2>

<p>Many <a href="http://nodejs.org/docs/v0.4.10/api/addons.html">C++ addons</a> require libraries that are not included in Nodejitsu's infrastructure by default. For example, <a href="https://github.com/learnboost/node-canvas">node-canvas</a> requires <a href="http://cairographics.org/">cairo</a>, which only recently became available on nodejitsu's platform.</p>
Expand Down Expand Up @@ -849,13 +870,13 @@ <h2 id="Preparing-a-package-json-for-your-application">Preparing a package.json
"name": "hellonode",
"subdomain": "hellonode",
"scripts": {
"start": "server.js"
"start": "node server.js"
},
"version": "0.0.0"
}
</code></pre>

<p>Notice the "scripts" property? This is where you'll store information about specific scripts in your application. The "start" property indicates the script that will get called when your application is started.</p>
<p>Notice the "scripts" property? This is where you'll store information about specific scripts in your application. The "start" property indicates the script that will get called when your application is started. Usage is compatible with <code>npm start</code>.</p>

<h2 id="Specifying-dependencies-in-your-package-json">Specifying dependencies in your package.json</h2>

Expand Down
21 changes: 17 additions & 4 deletions book.md
Expand Up @@ -387,10 +387,16 @@ accounts. You will be prompted for additional user information as required.
bin node_modules package.json ReadMe.md


## .jitsuconf file
## Configuring jitsu

All configuration data for your local jitsu install is located in the *.jitsuconf* file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using `jitsu config`.
All user-level configuration data for your local jitsu install is located in the *.jitsuconf* file located in your home directory. Directly modifying this file is not advised. You should be able to make all configuration changes using `jitsu config`.

### Selected Properties of .jitsuconf

* *loglength*: Change this to modify the default length of returned logs from `jitsu logs`.
* *loglevel*: Change this to modify the logging levels displayed by jitsu. Defaults to "info".
* *colors*: Change this to false to turn off jitsu's colors. Defaults to `true`.
* *analyze*: Change this to false to disable require-analyzer for all apps. Defaults to `true`.
# Nodejitsu Web Application
<a name='webapp'></a>

Expand Down Expand Up @@ -670,6 +676,13 @@ The ability to host tcp applications on nodejitsu and listen on non-80 ports is

Yes! For directions on how to set up a custom domain with Nodejitsu, [go here](http://dns.nodejitsu.com).

## "How can I turn off the require-analyzer in jitsu? I want to manage my own dependencies!"

There are three ways to disable the require-analyzer:

* Use the `--noanalyze` flag when running jitsu commands to disable it on a one-time basis.
* Add `"analyze": false` to your package.json to disable it on a per-app basis.
* Set "analyze" to `false` in your `~/.jitsuconf` to disable it on a global level.

## "Why won't this C++ addon compile?"

Expand Down Expand Up @@ -742,12 +755,12 @@ Here is an example of what your package.json might look like:
"name": "hellonode",
"subdomain": "hellonode",
"scripts": {
"start": "server.js"
"start": "node server.js"
},
"version": "0.0.0"
}

Notice the "scripts" property? This is where you'll store information about specific scripts in your application. The "start" property indicates the script that will get called when your application is started.
Notice the "scripts" property? This is where you'll store information about specific scripts in your application. The "start" property indicates the script that will get called when your application is started. Usage is compatible with `npm start`.

## Specifying dependencies in your package.json

Expand Down
Binary file modified book.pdf
Binary file not shown.

0 comments on commit 58fe59b

Please sign in to comment.