mirror of
https://github.com/Jermolene/TiddlyWiki5
synced 2024-11-07 18:39:57 +00:00
1a95ec9ac4
Thanks to @cjrk and @cheigele for contributing their developer docs (which can be found at https://github.com/cjrk/saa-tw). By the way, I plan to remove the “creator” and “modifier” fields but will keep a prominent acknowledgement for your contributions.
24 lines
1.0 KiB
Plaintext
24 lines
1.0 KiB
Plaintext
created: 20131219100444289
|
|
modified: 20140104120500001
|
|
tags: dev howto
|
|
title: Working with the TiddlyWiki5 repository
|
|
type: text/vnd.tiddlywiki
|
|
|
|
! Introduction
|
|
|
|
Mario Pietsch has created a short video tutorial on working with the TiddlyWiki5 ~GitHub repository.
|
|
|
|
<iframe width="560" height="315" src="http://www.youtube.com/embed/6ElUruH92tc" frameborder="0" allowfullscreen></iframe>
|
|
|
|
! Setting Up
|
|
|
|
If you plan on working with the TiddlyWiki5 source code then follow these steps:
|
|
|
|
# Fork the TiddlyWiki5 GitHub repository from https://github.com/Jermolene/TiddlyWiki5
|
|
# Clone a local copy of your fork
|
|
# Open a command line terminal and change the current working directory to the root of the repo
|
|
# Type `npm link` (Windows) or `sudo npm link` (Mac/Linux) to tell [[npm]] to use this copy of the repo as the globally installed one
|
|
|
|
After this procedure you can work with TiddlyWiki5 via [[npm]] as though it were installed in the usual way with `npm install -g tiddlywiki`.
|
|
|
|
See also [[Scripts for TiddlyWiki on Node.js]]. |