1
0
mirror of https://github.com/Jermolene/TiddlyWiki5 synced 2024-06-30 17:23:16 +00:00
TiddlyWiki5/editions/tw5.com/tiddlers/nodejs/Working with the TiddlyWiki5 repository.tid

24 lines
1.1 KiB
Plaintext
Raw Normal View History

2013-12-19 10:08:14 +00:00
created: 20131219100444289
2014-09-20 14:06:33 +00:00
modified: 20140920134404247
tags: [[TiddlyWiki on Node.js]]
2013-11-29 12:26:48 +00:00
title: Working with the TiddlyWiki5 repository
type: text/vnd.tiddlywiki
2014-08-31 13:43:14 +00:00
! Introduction
2014-09-20 14:06:33 +00:00
If you want to [[contribute|Contributing]] to TiddlyWiki's development, rather than [[installing TiddlyWiki in the usual way|Installing TiddlyWiki on Node.js]], you can work directly with the GitHub repository.
2014-08-31 13:43:14 +00:00
2014-09-20 14:06:33 +00:00
Mario Pietsch has created a [[short video introduction|Working with the TiddlyWiki5 repository video]].
2014-08-31 13:43:14 +00:00
2013-12-19 16:45:13 +00:00
! Setting Up
2014-09-20 14:06:33 +00:00
# Create an account on GitHub if you don't already have one
2013-12-19 10:08:14 +00:00
# Fork the TiddlyWiki5 GitHub repository from https://github.com/Jermolene/TiddlyWiki5
2013-12-19 16:45:13 +00:00
# Clone a local copy of your fork
2013-12-19 10:08:14 +00:00
# Open a command line terminal and change the current working directory to the root of the repo
2014-01-02 21:47:01 +00:00
# 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
2013-11-29 12:26:48 +00:00
2014-01-04 12:05:24 +00:00
After this procedure you can work with TiddlyWiki5 via [[npm]] as though it were installed in the usual way with `npm install -g tiddlywiki`.
2013-12-19 16:45:13 +00:00
2014-09-20 14:06:33 +00:00
See also [[Scripts for TiddlyWiki on Node.js]].