#!/bin/sh

./scripts/init-test.sh

if [ ! -f .env ]; then
    # If no `.env` file exists, echo error and exit with 1
    echo "You must define a .env file. Refer to the README for instructions."
    exit 1;
fi

NODE_ENV=development

source .env
scripts/createAppJson.js dev > app.json
