mirror of
https://github.com/firefly-iii/firefly-iii.git
synced 2025-02-25 18:45:27 -06:00
Initial code base for Sandstorm.IO support. Very beta.
This commit is contained in:
21
.sandstorm/build.sh
Executable file
21
.sandstorm/build.sh
Executable file
@@ -0,0 +1,21 @@
|
||||
#!/bin/bash
|
||||
# Checks if there's a composer.json, and if so, installs/runs composer.
|
||||
# Only runs when we connect the app to sandstorm (so once).
|
||||
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
|
||||
Reference in New Issue
Block a user