diff options
Diffstat (limited to 'docs/en/user')
-rw-r--r-- | docs/en/user/installation.rst | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/docs/en/user/installation.rst b/docs/en/user/installation.rst new file mode 100644 index 00000000..278f918f --- /dev/null +++ b/docs/en/user/installation.rst | |||
@@ -0,0 +1,23 @@ | |||
1 | Install wallabag | ||
2 | ================ | ||
3 | |||
4 | Requirements | ||
5 | ------------ | ||
6 | |||
7 | Installation | ||
8 | ------------ | ||
9 | |||
10 | Install Composer: | ||
11 | |||
12 | :: | ||
13 | |||
14 | curl -s http://getcomposer.org/installer | php | ||
15 | |||
16 | Next, on your web server, run this command: | ||
17 | |||
18 | :: | ||
19 | |||
20 | SYMFONY_ENV=prod composer create-project wallabag/wallabag wallabag "2.0.*@alpha" --no-dev | ||
21 | php bin/console wallabag:install --env=prod | ||
22 | |||
23 | Now you can access to http://yourwebsite/wallabag. | ||