aboutsummaryrefslogtreecommitdiffstats
path: root/destroy_environment.py
diff options
context:
space:
mode:
Diffstat (limited to 'destroy_environment.py')
-rwxr-xr-xdestroy_environment.py22
1 files changed, 22 insertions, 0 deletions
diff --git a/destroy_environment.py b/destroy_environment.py
new file mode 100755
index 00000000..bbdeffe9
--- /dev/null
+++ b/destroy_environment.py
@@ -0,0 +1,22 @@
+#!./bin/python
+
+import pymongo
+import sys, os
+
+print "*** WARNING! ***"
+print " Running this will destroy your mediagoblin database,"
+print " remove all your media files in user_dev/, etc."
+
+drop_it = raw_input(
+ 'Are you SURE you want to destroy your environment? (if so, type "yes")> ')
+
+if not drop_it == 'yes':
+ sys.exit(1)
+
+conn = pymongo.Connection()
+conn.drop_database('mediagoblin')
+
+os.popen('rm -rf user_dev/media')
+os.popen('rm -rf user_dev/beaker')
+
+print "removed all your stuff! okay, now re-run ./bin/buildout"