mirror of
https://github.com/wallabag/wallabag.git
synced 2024-11-13 20:41:04 +00:00
681e04b060
* Move `Makefile` to `GNUmakefile`, which GNU `make` picks first * Add `Makefile` so other `make`s forward to `gmake` * Set the `SHELL` variable and let `make` handle the shell Signed-off-by: Olivier Mehani <shtrom@ssji.net>
13 lines
308 B
Bash
Executable file
13 lines
308 B
Bash
Executable file
#!/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/scripts"; fi
|
|
. "$DIR/require.sh"
|
|
|
|
$COMPOSER_COMMAND install
|
|
php bin/console wallabag:install
|
|
php bin/console server:run
|