Feature #298 - Create environment tarball
[mediagoblin.git] / mediagoblin / gmg_commands / __init__.py
index 921f0430ae6ca407a8568b3dbb7413e456bf21a9..8226fd0e6f2e54ec7a356cc635dd7235c32540a6 100644 (file)
@@ -44,6 +44,14 @@ SUBCOMMAND_MAP = {
         'setup': 'mediagoblin.gmg_commands.wipealldata:wipe_parser_setup',
         'func': 'mediagoblin.gmg_commands.wipealldata:wipe',
         'help': 'Wipes **all** the data for this MediaGoblin instance'},
+    'env_export': {
+        'setup': 'mediagoblin.gmg_commands.import_export:import_export_parse_setup',
+        'func': 'mediagoblin.gmg_commands.import_export:env_export',
+        'help': 'Exports the data for this MediaGoblin instance'},
+    'env_import': {
+        'setup': 'mediagoblin.gmg_commands.import_export:import_export_parse_setup',
+        'func': 'mediagoblin.gmg_commands.import_export:env_import',
+        'help': 'Exports the data for this MediaGoblin instance'},
     }