1
0
Fork 0
mirror of https://github.com/wallabag/wallabag.git synced 2025-06-27 16:36:00 +00:00

Created scripts folder to store update/install/release process

This commit is contained in:
Nicolas Lœuillet 2016-10-09 21:50:15 +02:00
parent 26490a8794
commit 4e7863c6aa
No known key found for this signature in database
GPG key ID: 5656BE27E1E34D0A
4 changed files with 39 additions and 26 deletions

8
scripts/install.sh Normal file
View file

@ -0,0 +1,8 @@
#! /usr/bin/env bash
ENV=$1
TAG=$(git describe --tags $(git rev-list --tags --max-count=1))
git checkout $TAG
SYMFONY_ENV=$ENV composer install --no-dev -o --prefer-dist
php bin/console wallabag:install --env=$ENV