From: Michael Orlitzky Date: Wed, 16 Sep 2009 03:04:25 +0000 (-0400) Subject: Added the Configuration package with the Defaults module containing some default... X-Git-Url: http://gitweb.michael.orlitzky.com/?p=dead%2Fcensus-tools.git;a=commitdiff_plain;h=98eb1ef7be81064a5e6af3cd1b332b72d8173fe7 Added the Configuration package with the Defaults module containing some default configuration parameters. --- diff --git a/makefile b/makefile index 829bbb0..693b1c0 100644 --- a/makefile +++ b/makefile @@ -1,4 +1,4 @@ -DB_NAME='census2000' +DB_NAME='census' DB_USER='postgres' TIGER_DATA_URL='http://www2.census.gov/cgi-bin/shapefiles/multi-file-download?files=24_MARYLAND%2Ftl_2008_24_tabblock00.zip' TIGER_SRID='4269' diff --git a/src/Configuration/Defaults.py b/src/Configuration/Defaults.py new file mode 100644 index 0000000..7c7fa69 --- /dev/null +++ b/src/Configuration/Defaults.py @@ -0,0 +1,3 @@ +DATABASE_HOST = 'localhost' +DATABASE_NAME = 'census' +DATABASE_USERNAME = 'postgres' diff --git a/src/Configuration/__init__.py b/src/Configuration/__init__.py new file mode 100644 index 0000000..59124b0 --- /dev/null +++ b/src/Configuration/__init__.py @@ -0,0 +1 @@ +# <3 Git