mirror of
https://github.com/wallabag/wallabag.git
synced 2025-01-01 12:28:41 +00:00
13 lines
306 B
Bash
13 lines
306 B
Bash
#! /usr/bin/env bash
|
|
# You can execute this file to install wallabag dev environment
|
|
# eg: `sh dev.sh`
|
|
|
|
COMPOSER_COMMAND='composer'
|
|
|
|
DIR="${BASH_SOURCE%/*}"
|
|
if [[ ! -d "$DIR" ]]; then DIR="$PWD"; fi
|
|
. "$DIR/require.sh"
|
|
|
|
$COMPOSER_COMMAND install
|
|
php bin/console wallabag:install
|
|
php bin/console server:run
|