diff options
author | VirtualTam <virtualtam@flibidi.net> | 2015-09-04 21:25:47 +0200 |
---|---|---|
committer | VirtualTam <virtualtam@flibidi.net> | 2015-09-04 21:32:25 +0200 |
commit | f8b936e7e75601b5d96525f25d5b52dbabd909b4 (patch) | |
tree | 8a6fcc4cd511aad9b1f24df32bdcfe810419172f /doc/Download.md | |
parent | ce8c4a84ba180802ca6e5f00f60353ad71d3fcc8 (diff) | |
download | Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.tar.gz Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.tar.zst Shaarli-f8b936e7e75601b5d96525f25d5b52dbabd909b4.zip |
Doc: sync from Wiki, generate HTML
Additions:
- Installation/Download: how to get Shaarli
- Community software: ShaarliOS app
Modifications:
- Installation/Server requirements: PHP 5.4 EOL, PHP 7 announcements
- Installation/Server configuration: improve Nginx security
- Troubleshooting: PHP sessions on `free.fr`
Signed-off-by: VirtualTam <virtualtam@flibidi.net>
Diffstat (limited to 'doc/Download.md')
-rw-r--r-- | doc/Download.md | 31 |
1 files changed, 31 insertions, 0 deletions
diff --git a/doc/Download.md b/doc/Download.md new file mode 100644 index 00000000..7930f541 --- /dev/null +++ b/doc/Download.md | |||
@@ -0,0 +1,31 @@ | |||
1 | #Download | ||
2 | ## Get Shaarli! | ||
3 | ### Latest stable revision | ||
4 | This revision has been [released](https://github.com/shaarli/Shaarli/releases) and tested.[](.html) | ||
5 | |||
6 | #### Clone with Git (recommended) | ||
7 | ```bash | ||
8 | $ git clone https://github.com/shaarli/Shaarli.git -b stable shaarli | ||
9 | ``` | ||
10 | |||
11 | #### Download as an archive | ||
12 | ```bash | ||
13 | $ wget https://github.com/shaarli/Shaarli/archive/stable.zip | ||
14 | $ unzip stable.zip | ||
15 | $ mv Shaarli-stable shaarli | ||
16 | ``` | ||
17 | |||
18 | Tarballs are also available: | ||
19 | ```bash | ||
20 | $ wget https://github.com/shaarli/Shaarli/archive/stable.tar.gz | ||
21 | $ tar xvf stable.tar.gz | ||
22 | $ mv Shaarli-stable shaarli | ||
23 | ``` | ||
24 | |||
25 | ### Development (mainline) | ||
26 | _Use at your own risk!_ | ||
27 | |||
28 | To get the latest changes: | ||
29 | ```bash | ||
30 | $ git clone https://github.com/shaarli/Shaarli.git shaarli | ||
31 | ``` | ||