Skip to content

Instantly share code, notes, and snippets.

@frantzmiccoli
frantzmiccoli / envcheck
Created March 30, 2020 20:22
Small naive script to look for missing variables from a reference .env file to another
#!/usr/bin/env python3
# Usage:
# envcheck source/.env.template source/.env
import sys
def main():
variables_sets_list = _get_variables_set_list()