This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
from __future__ import with_statement | |
import os | |
from fabric.api import local, settings, abort, sudo, env | |
from fabric.contrib.console import confirm | |
env.hosts = [ | |
# 'me@my-imac', | |
'me@my-desk', | |
] | |
def db_exists(db='testdb'): | |
if (sudo("psql -l | grep {} | wc -l".format(db), user='postgres')) != '0': | |
return True | |
else: | |
return False | |
def db_rebuild(db='testdb'): | |
"""Drop, create, and sync the db.""" | |
## Warning. | |
if not confirm("Running on {} with database {}. Proceed?".format(env.host, db)): | |
print("Ok, no changes.") | |
return | |
## Drop the database. | |
if db_exists(db): | |
sudo("dropdb {}".format(db), user='postgres') | |
## Create the database. | |
sudo("createdb -E UTF8 -e {}".format(db), user='postgres') | |
## Run django's syncdb. | |
local('python ./manage.py syncdb') |