This file contains hidden or 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
import argparse | |
import difflib | |
import os | |
import sys | |
from itertools import chain | |
import yaml | |
file_name_format = "{sha}:{vendor}.yml" |
This file contains hidden or 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
# Note that the "smeatonj" below is the user that installed postgres with homebrew | |
# first, the "default" database: | |
$ createuser -U smeatonj djangotest -P | |
Enter password for new role: | |
Enter it again: | |
$ createdb djangotest | |
$ psql -U smeatonj -d djangotest |