small changes

azivner 2017-12-25 10:03:00 -05:00
parent d2cf07aa0d
commit 9eeee07653
6 changed files with 39 additions and 28 deletions

30
Installation as webapp.md Normal file

@ -0,0 +1,30 @@
This pages describes installing Trilium as a web application as opposed to installing desktop (electron) build.
Trilium as web application is typically used as a [[sync|Synchronization]] server, but can be also used as online version of Trilium.
## Requirements
Trilium is a [node.js](http://nodejs.org/) application. Supported version is 8.2.1 and up, but it might work with earlier versions, it's just not tested. It will definitely not run on node version lower than 7.6 though (first version with async/await enabled).
## Installation
### Download
You can either download source code zip/tar from [[latest release|https://github.com/zadam/trilium/releases/latest]] or clone git repository from stable branch with ```git clone -b stable https://github.com/zadam/trilium.git```
## Installation
~~~
cd trilium
# download all node dependencies
npm install
~~~~
## Run
~~~~
cd trilium
# using nohup to make sure trilium keeps running after user logs out
nohup node bin/www &
~~~~

@ -1,27 +0,0 @@
By server installation we mean installing Trilium as a web application as opposed to installing desktop (electron) build.
## Requirements
Trilium is a [node.js](http://nodejs.org/) application. Supported version is 8.2.1 and up, but it might work with earlier versions, it's just not tested. It will definitely not run on node version lower than 7.6 though (first version with async/await enabled).
## Install from git
~~~
git clone https://github.com/zadam/trilium.git
cd trilium
# stable branch should contain latest stable release
git checkout stable
# download all node dependencies
npm install
~~~~
## Run
~~~~
cd trilium
# using nohup to make sure trilium keeps running after user logs out
nohup node bin/www &
~~~~

@ -11,7 +11,7 @@ You can follow external link by either double clicking (will open new tab/window
Links to internal notes are created a bit differently. To create link to note at current cursor position, press ```CTRL-L```.
In the dialog you can see radio button to choose from different types of linking. First one is classic link to note, the other two are related to [[cloning|Cloning]] and will be covered separately.
In the dialog you can see radio button to choose from different types of linking. First one is classic link to note, the other two are related to [[cloning|Cloning notes]] and will be covered separately.
[[gifs/create-link-to-note.gif]]

@ -10,6 +10,14 @@ For such sensitive data Trilium can protect these notes which essentially means:
**Be aware that currently protected notes is considered to be experimental. It's possible encryption method will change in the future (migration path will be provided).**
## How to use protected notes
Notes are by default unprotected. If you want your note to be protected, click on lock icon next to the note title as seen here:
[[gifs/protecting-note.gif]]
You can also notice how protected notes are greyed in both note tree and note editor so you have good overview of what's protected and what isn't.
## What is encrypted
In principle Trilium encrypts data, but doesn't encrypt metadata. This specifically means:

BIN
gifs/protecting-note.gif Normal file

Binary file not shown.

After

Width:  |  Height:  |  Size: 884 KiB