#!/usr/bin/env python
# -*- coding: utf-8 -*-

import json
import os

with open('invoke-env.json', 'w') as f:
    json.dump(dict(os.environ), f)
