This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
fs = require('fs'); | |
// Initialize the stack with the path on the command line | |
let stack = [ | |
{ | |
path: process.argv[2], | |
level: 1 | |
} | |
]; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// The Yeoman angular-fullstack generator allows for authentication to be required | |
// when a user goes to a given route. To enable this behavior, add | |
authenticate: true | |
// to your /client/app/<routename>/<routename>.js file, in the .when routing block. | |
// like this: | |
angular.module('meanApp') | |
.config(function ($routeProvider) { | |
$routeProvider | |
.when('/', { | |
templateUrl: 'app/main/main.html', |