Merge pull request #54 from belmiromoreira/master

configure mysql port
This commit is contained in:
Sandy Walsh 2013-03-12 09:11:09 -07:00
commit 2bfdbaa400
2 changed files with 4 additions and 1 deletions

View File

@ -2,6 +2,7 @@ export STACKTACH_DB_NAME="stacktach"
export STACKTACH_DB_HOST=""
export STACKTACH_DB_USERNAME="root"
export STACKTACH_DB_PASSWORD="password"
export STACKTACH_DB_PORT="3306"
export STACKTACH_INSTALL_DIR="/srv/www/stacktach/"
export STACKTACH_DEPLOYMENTS_FILE="/srv/www/stacktach/stacktach_worker_config.json"

View File

@ -9,6 +9,7 @@ try:
db_host = STACKTACH_DB_HOST
db_username = STACKTACH_DB_USERNAME
db_password = STACKTACH_DB_PASSWORD
db_port = STACKTACH_DB_PORT
install_dir = STACKTACH_INSTALL_DIR
except ImportError:
db_engine = os.environ.get('STACKTACH_DB_ENGINE',
@ -17,6 +18,7 @@ except ImportError:
db_host = os.environ.get('STACKTACH_DB_HOST', "")
db_username = os.environ['STACKTACH_DB_USERNAME']
db_password = os.environ['STACKTACH_DB_PASSWORD']
db_port = os.environ.get('STACKTACH_DB_PORT', "")
install_dir = os.environ['STACKTACH_INSTALL_DIR']
DEBUG = False
@ -35,7 +37,7 @@ DATABASES = {
'USER': db_username,
'PASSWORD': db_password,
'HOST': db_host, # Set to empty string for localhost.
'PORT': '', # Set to empty string for default.
'PORT': db_port, # Set to empty string for default.
}
}