Merge branch 'master' of github.com:dallonf/deployd

This commit is contained in:
Ritchie Martori
2012-07-06 09:22:08 -07:00
4 changed files with 46 additions and 86 deletions

View File

@@ -38,7 +38,7 @@ module.exports.loadConfig = function(basepath, fn) {
*/
module.exports.saveConfig = function(resources, basepath, fn) {
var resourcesPath = path.join(basepath, '/app.dpd')
, json = JSON.stringify(resources);
, json = JSON.stringify(resources, null, '\t');
fs.writeFile(resourcesPath, json, 'utf-8', function(err) {
if (err) return fn(err);

View File

@@ -94,8 +94,8 @@
</p>
</div>
<div class="tutorial-help">
<p>If you're new to Deployd, check out our tutorial to quickly build your first app.</p>
<a href="http://www.deployd.com/tutorial/step1" target="_blank" class="btn btn-primary"><i class="icon-question-sign icon-white"></i> Go to Tutorial</a>
<p>If you're new to Deployd, check out our Hello World tutorial to quickly dive into Deployd</p>
<a href="http://www.deployd.com/docs/tutorials/hello-world.html" target="_blank" class="btn btn-primary"><i class="icon-question-sign icon-white"></i> Go to Tutorial</a>
</div>
</div>
</div>

File diff suppressed because one or more lines are too long

File diff suppressed because one or more lines are too long