Skip to content
/ tw5-auth Public

A simple authentication and authorization proxy for TiddlyWiki5.

Notifications You must be signed in to change notification settings

kunxi/tw5-auth

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

2 Commits
 
 
 
 
 
 
 
 

Repository files navigation

#tw5-auth

A simple authentication and authorization proxy for TiddlyWiki5.

Quick Start

Assume you are using Google App with example.com.

Clone the source code:

git clone https://github.com/kunxi/tw5-auth.git

Copy the config.json.example to config.json and tailor it for your use:

  • get the client_id and client_secret from Google API console
  • create a secret session key, my favorite tools is WordPress
  • set the domain to your Google App domain, example.com; logins from example.com will be granted full privilege.
  • mount_point is used for the Google OAuth callback: $mount_point/auth/google/callback. Theoretically, tw5-auth can be deployed in non-root path, but it is NOT tested.
  • tw5_host(default is localhost) and tw_port specify the endpoint of TiddlyWiki5 instance
  • host(default is localhost) and port specify the tw5-auth endpoint

Run the tw5-auth service

node tw5-auth/app.js --config config.json

Assumes tw5-auth runs in localhost:8086, and TW5 runs in localhost:8080, direct your browser to localhost:8086, you should see the TW5 page. Try to create/modify the tiddlers, and refresh the page, nothing is persisted.

Direct your browser to http://localhost:8086/auth/google, the page will be directed to Google login page, login with your credential, and the page will be refreshed to the original page. Now try to create/modify the tiddlers, and refresh the page, the tiddlers are updated.

Advanced Usage

tw5-auth leverage the versatile passportjs for authentication. Please consult passportjs's documentation for more details.

If you want more sophisticated access control, you might consider connect-roles.

License

MIT

About

A simple authentication and authorization proxy for TiddlyWiki5.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published