#!/bin/bash -e
# removeDotEnv.sh
#
# Remove .env

rm -f .env
echo ".env is removed"