[tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-05 Thread TW Tones
On other thing When I setup node on my android and my Disk Station some liniux people told be to load tiddlywiki with the nohup command, no hang up, it returns to the console and you can load another. I am not expert here. Regards Tony On Monday, 31 August 2020 12:37:09 UTC+10, Morgaine

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-04 Thread oha...@gmail.com
I use TiddlyServer for this, with the added benefit of being able to take my large files out of my TiddlyWikis and still serve them using TiddlyServer to access them inside any Wiki with just a canonical_uri or direct link. On Friday, September 4, 2020 at 1:04:35 PM UTC+2 Darek Bobak wrote: >

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-04 Thread Darek Bobak
Yes, the tiddlyserver seems to be a better option. And you can also run tiddlyserver with pm2, putting it in the bacground (or even run at system startup) without terminal window open. Darek piątek, 4 września 2020 o 02:52:26 UTC+2 TW Tones napisał(a): > Morgaine, > > I support marks

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-03 Thread TW Tones
Morgaine, I support marks suggestion, the wikis then appear on a folder under the top wikis IP/Port address. Then you need only one IP address:port A Couple of big tips I found are as follow, just ask if you want more details. I have assumed a certain level of knowledge in my reply, so I am

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-03 Thread Morgaine O'Herne
That sounds like something I want to try. Thank you. On Thu, Sep 3, 2020 at 10:54 AM 'Mark S.' via TiddlyWiki < tiddlywiki@googlegroups.com> wrote: > I understood your question to mean that you wanted to launch from the > browser. So I was interested in responses. Apparently that isn't what you

[tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-03 Thread 'Mark S.' via TiddlyWiki
I understood your question to mean that you wanted to launch from the browser. So I was interested in responses. Apparently that isn't what you wanted. If you use Bob or tiddlyserver, then all your wikis can use the same port number. You can just leave it running and have it launched by your

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-03 Thread Morgaine O'Herne
Thank you Darek, I will give this a try. On Wed, Sep 2, 2020 at 9:19 AM Darek Bobak wrote: > That's how I dit it on Windows: > 1. npm install -g tiddlywiki (I assume you've already done it) > 2. Install pm2 - process manager for node.js (https://pm2.keymetrics.io/): > npm install pm2@latest -g

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-02 Thread Darek Bobak
That's how I dit it on Windows: 1. npm install -g tiddlywiki (I assume you've already done it) 2. Install pm2 - process manager for node.js (https://pm2.keymetrics.io/): npm install pm2@latest -g 3. Initialise wiki folders: tiddlywiki C:\Users\me\path\to\my\wiki1 --init server tiddlywiki

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-09-01 Thread Donald Coates
What OS are you using? There are some good tmux cheatsheets out there but you can 1) create a new session for each wiki (tmux new -s wiki1 , etc) then tmux attach -t wiki1; run the wiki; ctrl-b then d to detach; repeat for each wiki 2) create a new session tmux new -s wiki ; then attach ;

Re: [tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-08-30 Thread Morgaine O'Herne
Thanks Rob. I think #2 is the best I can do for the wikis on my own computer, given my current skill level. If someone could simplify this for me, I'd be most grateful. Thanks. On Sun, Aug 30, 2020 at 9:20 PM Rob Hoelz wrote: > Hello! > > This is how I approach that: > > 1) Each wiki has a

[tw5] Re: How to keep multiple wikis running on node.js without terminal up

2020-08-30 Thread Rob Hoelz
Hello! This is how I approach that: 1) Each wiki has a script in the same directory as tiddlywiki.info - all it does is check that the installed TiddlyWiki version matches what's in package-lock.json, set the TIDDLYWIKI_PORT environment variable, and invoke ./node_modules/.bin/tiddlywiki.