1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 01:03:16 +00:00

Switch to using 127.0.0.1 in docs

This commit is contained in:
Jermolene 2014-01-02 20:07:05 +00:00
parent b132e1023d
commit 2343bb3e5b
2 changed files with 4 additions and 4 deletions

View File

@ -1,5 +1,5 @@
created: 20131219100608529
modified: 20131231113631968
modified: 20140102200617777
tags: howto
title: Installing TiddlyWiki on Node.js
type: text/vnd.tiddlywiki
@ -16,7 +16,7 @@ type: text/vnd.tiddlywiki
## `mkdir mywiki` to create a folder for a new wiki
## `cd mywiki` to move into the new folder
## `tiddlywiki --server` to start TiddlyWiki
## Visit http://0.0.0.0:8080/ in your browser
## Visit http://127.0.0.1:8080/ in your browser
## Try editing and creating tiddlers
The `-g` flag causes TiddlyWiki to be installed globally. Without it, TiddlyWiki will only be available in the directory where you installed it.

View File

@ -1,5 +1,5 @@
created: 20131219100637788
modified: 20131219100657540
modified: 20140102200458024
tags: howto dev
title: Scripts for TiddlyWiki on Node.js
type: text/vnd.tiddlywiki
@ -48,7 +48,7 @@ serve.cmd <username> [<password>]
This script starts TiddlyWiki5 running as an HTTP server with the content from the `clientserver` edition. By default, the Node.js serves on port 8080. If the optional `username` parameter is provided, it is used for signing edits. If the `password` is provided then HTTP basic authentication is used.
To experiment with this configuration, run the script and then visit `http://0.0.0.0:8080` in a browser.
To experiment with this configuration, run the script and then visit `http://127.0.0.1:8080` in a browser.
Changes made in the browser propagate to the server over HTTP (use the browser developer console to see these requests). The server then syncs changes to the file system (and logs each change to the screen).