Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@ tiddler content on demand.

Create an Google App Engine standard app and deploy with

appcfg.py -A your-app -V your-version update .
gcloud --project=your-app app deploy

Then visit https://your-app.appspot.com/. As noted above, only admins
will have access to the content.
Expand Down Expand Up @@ -77,16 +77,16 @@ propagate to the other.
## TiddlyWiki base image

The TiddlyWiki code is stored in and served from index.html, which
(as you can see by clicking on the Tools tab) is TiddlyWiki version 5.1.13.
(as you can see by clicking on the Tools tab) is TiddlyWiki version 5.1.21.

Plugins must be pre-baked into the TiddlyWiki file, not stored on the server
as lazily loaded Tiddlers. The index.html in this directory is 5.1.13 with
as lazily loaded Tiddlers. The index.html in this directory is 5.1.21 with
the TiddlyWeb and Markdown plugins added. The TiddlyWeb plugin is
required, so that index.html talks back to the server for content.

The process for preparing a new index.html is:

- Open tiddlywiki-5.1.13.html in your web browser.
- Open tiddlywiki-5.1.21.html in your web browser.
- Click the control panel (gear) icon.
- Click the Plugins tab.
- Click "Get more plugins".
Expand Down
8 changes: 3 additions & 5 deletions app.yaml
Original file line number Diff line number Diff line change
@@ -1,10 +1,8 @@
application: tiddlywiki-gae
version: 2016-12-22
runtime: go
api_version: go1
# go112+ doesn't support login: handlers
runtime: go111

handlers:
- url: /.*
login: admin
secure: always
script: _go_app
script: auto
Loading