diff options
author | Vikraman Choudhury <vikraman.choudhury@gmail.com> | 2011-07-11 13:56:12 +0530 |
---|---|---|
committer | Vikraman Choudhury <vikraman.choudhury@gmail.com> | 2011-07-11 13:56:12 +0530 |
commit | 8e10510c42fd9f64d19278e3407add6877ee5b22 (patch) | |
tree | a954b0fbf0873675b7c0020b1b2738bcfecc32d4 | |
parent | fixes after pylint (diff) | |
download | gentoostats-8e10510c42fd9f64d19278e3407add6877ee5b22.tar.gz gentoostats-8e10510c42fd9f64d19278e3407add6877ee5b22.tar.bz2 gentoostats-8e10510c42fd9f64d19278e3407add6877ee5b22.zip |
fixes for deploying on vulture
-rwxr-xr-x | server/app.py | 1 | ||||
-rw-r--r-- | server/config.py | 4 |
2 files changed, 3 insertions, 2 deletions
diff --git a/server/app.py b/server/app.py index f2948e8..3d31d73 100755 --- a/server/app.py +++ b/server/app.py @@ -16,6 +16,7 @@ from package import Package from host import Host urls = ( + r'', 'Index', r'/', 'Index', r'/arch', 'Arch', r'/profile', 'Profile', diff --git a/server/config.py b/server/config.py index 6cb9ec3..a7b0f26 100644 --- a/server/config.py +++ b/server/config.py @@ -5,8 +5,8 @@ import web db = web.database( dbn='mysql', - user='gentoo', - pw='gentoo', + user='gentoostats', + pw='poicyurp3ZaddajGhaf', db='gentoostats' ) |