Skip to content

Commit

Permalink
Fixed Total.js v5 start script.
Browse files Browse the repository at this point in the history
  • Loading branch information
petersirka committed Aug 5, 2024
1 parent 376844f commit 907318b
Show file tree
Hide file tree
Showing 3 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions app.bundle

Large diffs are not rendered by default.

2 changes: 1 addition & 1 deletion public/parts/code.html
Original file line number Diff line number Diff line change
Expand Up @@ -898,7 +898,7 @@
sub.push({ name: '@(Controller)', icon: 'code', value: 'template', id: 'controller' });
sub.push({ name: '@(Schema)', icon: 'code', value: 'template', id: 'schema' });
sub.push({ name: '@(Extension)', icon: 'code', value: 'template', id: 'extension' });
sub.push({ name: '@(Start script v5)', icon: 'code', value: 'template', id: 'index5ľ' });
sub.push({ name: '@(Start script v5)', icon: 'code', value: 'template', id: 'index5' });
sub.push({ name: '@(Start script v4)', icon: 'code', value: 'template', id: 'index' });
sub.push({ name: '@(Test script)', icon: 'code', value: 'template', id: 'test' });
sub.push({ name: '@(Upload + FileStorage)', icon: 'code', value: 'template', id: 'upload' });
Expand Down
4 changes: 2 additions & 2 deletions public/templates/index5.txt
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ const options = {};
// options.inspector = 9229;
// options.watch = ['private'];
// options.livereload = 'https://yourhostname';
// options.watcher = true; // enables watcher for the release mode only controlled by the app `F.restart()`
// options.watcher = false; // disables watcher
// options.edit = 'wss://www.yourcodeinstance.com/?id=projectname'
options.release = process.argv.includes('--release');

Expand All @@ -29,4 +29,4 @@ options.servicemode = process.argv.includes('--service') || process.argv.include
// options.cluster = 'auto';
// options.limit = 10; // max 10. threads (works only with "auto" scaling)

F.run(options);
Total.run(options);

0 comments on commit 907318b

Please sign in to comment.