Add standalone run.sh and configure localhost

This commit is contained in:
Norbert Renner 2019-12-30 20:52:55 +01:00
parent 5cc99949fd
commit 12c58b70fa
4 changed files with 24 additions and 3 deletions

View file

@ -365,6 +365,8 @@ gulp.task('release:zip_standalone', function() {
})
);
var root = gulp.src(['resources/standalone/run.sh', 'resources/standalone/segments4']);
var serverRoot = gulp
.src(
[
@ -402,7 +404,7 @@ gulp.task('release:zip_standalone', function() {
base: '../brouter/misc/scripts/'
});
return merge(brouterWeb, serverRoot, serverProfiles, serverScripts)
return merge(brouterWeb, root, serverRoot, serverProfiles, serverScripts)
.pipe(zip(destName))
.pipe(gulp.dest('.'));
});