commit b1f864b3046a64dabe24bb2f334afbe150a4ef63 Author: Josh Mudge Date: Mon Apr 2 19:47:26 2018 -0600 wallabag-install v1.0 diff --git a/LICENSE.txt b/LICENSE.txt new file mode 100644 index 0000000..840e4f6 --- /dev/null +++ b/LICENSE.txt @@ -0,0 +1,14 @@ +Copyright 2018 Joshua Mudge + +Licensed under the Apache License, Version 2.0 (the "License"); +you may not use this file except in compliance with the License. +You may obtain a copy of the License at + + http://www.apache.org/licenses/LICENSE-2.0 + +Unless required by applicable law or agreed to in writing, software +distributed under the License is distributed on an "AS IS" BASIS, +WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. + +See the License for the specific language governing permissions and +limitations under the License. diff --git a/README.md b/README.md new file mode 100644 index 0000000..a111f06 --- /dev/null +++ b/README.md @@ -0,0 +1,3 @@ +# Wallabag Install Script + +I was annoyed with the clunky install instructions / two seperate pages for Wallabag. I wrote a script to automate that process. diff --git a/install.sh b/install.sh new file mode 100644 index 0000000..c2db152 --- /dev/null +++ b/install.sh @@ -0,0 +1,8 @@ +# Wallabag Install Script v1.0 by Joshua Mudge +# Ad Mejorem Dei Glorium + +sudo apt-get install php php-curl php-dom php-gd php-xml php-bcmath php-mbstring php-fpm +git clone https://github.com/wallabag/wallabag.git +cd wallabag +curl -s https://getcomposer.org/installer | php +make install