mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2024-11-23 09:26:29 -06:00
21 lines
478 B
Bash
Executable File
21 lines
478 B
Bash
Executable File
#!/bin/bash
|
|
# Checks if there's a composer.json, and if so, installs/runs composer.
|
|
# This script only runs once, when the app connects to sandstorm.
|
|
set -euo pipefail
|
|
|
|
|
|
|
|
cd /opt/app
|
|
|
|
cp .env.sandstorm .env
|
|
|
|
if [ -f /opt/app/composer.json ] ; then
|
|
if [ ! -f composer.phar ] ; then
|
|
curl -sS https://getcomposer.org/installer | php
|
|
fi
|
|
php composer.phar install --no-dev --no-suggest
|
|
fi
|
|
|
|
# link storage folder
|
|
rm -rf /opt/app/storage
|
|
ln -s /var/storage /opt/app |