removes .ini files from repo. Changes leaderboard printing back to html

This commit is contained in:
Julien Lengrand-Lambert
2013-01-22 11:30:24 +00:00
parent 35e2999c18
commit ff05f492bb
3 changed files with 3 additions and 28 deletions

1
.gitignore vendored
View File

@@ -5,3 +5,4 @@ lib_tests/tweepy
*.pyc
test.py
*.db
*.ini

View File

@@ -1,26 +0,0 @@
#basic.ini
#contains default arguments used on my development machine
#change accordingly to make things work on your own configuration
[base]
root=/home/jll/Documents/code/twitterboard/
engine=sqlite:///twiderboard.db
[log]
debug=Falsez
name=board.log
[keys]
root=/home/jll/Documents/code/twitterboard/
basic =basic.keys
oauth =oauth.keys
oauth_id=True
[html]
root=/home/jll/Dropbox/Public/Twiderboard/
html=leader.html
tmpl=tmpl.html

View File

@@ -197,7 +197,7 @@ if __name__ == '__main__':
# registering the signal
signal.signal(signal.SIGINT, stop_handler)
l = StdLeaderBoard()
#l = HtmlLeaderboard()
#l = StdLeaderBoard()
l = HtmlLeaderboard()
print "Press CTRL + C to stop application"
l.start()