#!/usr/bin/env bash

# Unset all meteor related environment variables. Run:
# source unset-meteor-env
# This will unset the variables below in your current shell.
unset PORT
unset ROOT_URL
unset MONGO_URL
unset MONGO_OPLOG_URL

# mongodb related extras
unset MONGO_USERNAME
unset MONGO_PASSWORD
unset MONGO_HOST
unset MONGO_PORT
unset MONGO_DB

# meteor development related extras
unset REPO_HOME
unset METEOR_APP_HOME
unset METEOR_APP_NAME
unset METEOR_CLI_HOME
unset ROOT_HOST
unset METEOR_PATH # In case you use a meteor checkout
unset METEOR_SETTINGS_PATH

# meteor testing related extras
unset METEOR_TEST_PACKAGES
unset TEST_PORT
unset TEST_ROOT_URL
unset TEST_MONGO_URL
unset TEST_METEOR_SETTINGS_PATH

# meteor deployment related extras
unset METEOR_HOSTNAME
unset NGINX_PROTOCOL

# docker related config
unset DOCKER_HTTP_PORT
unset DOCKER_HTTPS_PORT
unset DOCKER_CONTAINER_NAME
unset DOCKER_HOSTNAME
unset DOCKER_USE_RANDOM_PORT
