Skip to content

Commit

Permalink
add the config script needed to experiment with externalized configs
Browse files Browse the repository at this point in the history
	currently only used by the add.py script
  • Loading branch information
pattonwebz committed Nov 23, 2015
1 parent cf0d6ff commit d5b487c
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions configuration.py
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
#!/usr/bin/env python
# configuration.py
# description: This is the config script
# copyrigtht: 2015 William Patton - PattonWebz
# licence: GPLv3
# @package: PWTwitterBot

## enter the database connection information
dbconfig = {
'user': 'bot-twitter',
'password': 'someSecurePassword',
'host': '127.0.0.1',
'database': 'twitterbot',
'raise_on_warnings': True,
}

0 comments on commit d5b487c

Please sign in to comment.