#!/bin/bash -e
# prestart.sh
#
# Checks to ensure that the environment is set up correctly to run the project.

if ! test -f .env; then
  echo 'Please create a .env file in order to continue.';
  exit 1;
fi

yarn check:tools

yarn create:autogenerated:env
