Setup Instruction.

Setup application keys:

Create your twitter app and get the secret keys form https://apps.twitter.com/ and edit the App.Config of Presentation/tweetyzard project and change the below keys:

<add key="AccessToken" value="YourAppAccessToken" />
<add key="AccessTokenSecret" value="YourAppAccessTokenSecret" />
<add key="ConsumerKey" value="YourAppConsumerKey" />
<add key="ConsumerSecret" value="YourAppConsumerSecret" />

Setup Database:

Publish the Database\tweetyzard.database project to a SQL server database and change the below key accordingly:

<add key="DbConnectionString" value="data source=.;initial catalog=tweetyzard.database;integrated security=True" /> 

Saving stream directly to database:

A new functionality has been added where we can directly save the streaming data in database without stopping the stream. To enable this feature download the source code from the source code tab and then turn <add key="SaveStreamToDatabase" value="false"/> to true.