2021-04-01 13:40:47 +00:00
|
|
|
#!/bin/sh
|
|
|
|
|
2021-04-10 07:36:19 +00:00
|
|
|
# Create required directory structure (if it does not already exist)
|
|
|
|
if [[ ! -d "$INVENTREE_STATIC_ROOT" ]]; then
|
|
|
|
echo "Creating directory $INVENTREE_STATIC_ROOT"
|
2021-05-24 23:32:21 +00:00
|
|
|
mkdir -p $INVENTREE_STATIC_ROOT
|
2021-04-10 07:36:19 +00:00
|
|
|
fi
|
|
|
|
|
|
|
|
if [[ ! -d "$INVENTREE_MEDIA_ROOT" ]]; then
|
|
|
|
echo "Creating directory $INVENTREE_MEDIA_ROOT"
|
2021-05-24 23:32:21 +00:00
|
|
|
mkdir -p $INVENTREE_MEDIA_ROOT
|
2021-04-10 07:36:19 +00:00
|
|
|
fi
|
2021-04-07 13:46:03 +00:00
|
|
|
|
2021-04-10 07:36:19 +00:00
|
|
|
# Check if "config.yaml" has been copied into the correct location
|
|
|
|
if test -f "$INVENTREE_CONFIG_FILE"; then
|
|
|
|
echo "$INVENTREE_CONFIG_FILE exists - skipping"
|
|
|
|
else
|
|
|
|
echo "Copying config file to $INVENTREE_CONFIG_FILE"
|
2021-06-16 12:36:05 +00:00
|
|
|
cp $INVENTREE_HOME/InvenTree/config_template.yaml $INVENTREE_CONFIG_FILE
|
2021-04-01 13:40:47 +00:00
|
|
|
fi
|
|
|
|
|
2021-04-10 07:36:19 +00:00
|
|
|
echo "Starting InvenTree server..."
|
2021-04-07 12:27:55 +00:00
|
|
|
|
2021-04-01 13:40:47 +00:00
|
|
|
# Wait for the database to be ready
|
|
|
|
cd $INVENTREE_MNG_DIR
|
|
|
|
python manage.py wait_for_db
|
|
|
|
|
|
|
|
sleep 10
|
|
|
|
|
|
|
|
echo "Running InvenTree database migrations and collecting static files..."
|
|
|
|
|
|
|
|
# We assume at this stage that the database is up and running
|
|
|
|
# Ensure that the database schema are up to date
|
|
|
|
python manage.py check || exit 1
|
|
|
|
python manage.py migrate --noinput || exit 1
|
|
|
|
python manage.py migrate --run-syncdb || exit 1
|
2021-04-20 16:46:35 +00:00
|
|
|
python manage.py prerender || exit 1
|
2021-04-01 13:40:47 +00:00
|
|
|
python manage.py collectstatic --noinput || exit 1
|
|
|
|
python manage.py clearsessions || exit 1
|
|
|
|
|
2021-04-10 05:08:10 +00:00
|
|
|
# Now we can launch the server
|
2021-04-18 09:37:11 +00:00
|
|
|
gunicorn -c $INVENTREE_HOME/gunicorn.conf.py InvenTree.wsgi -b 0.0.0.0:$INVENTREE_WEB_PORT
|