#!/bin/bash

   if [ "$NODE_ENV" = "development" ]

    then

        npm run start:seed

    else

        npm start
fi

exit 0
