This is the code for dotnetmashup.azurewebsites.net a mashup of news feeds for the .net
community.
Right now ASP.NET 5 has a multitude of news from tweets, blog posts, announcements repo, and the community standup.
This app is designed to try to aggregate them in one continuous scroll web page.
Add your blog information to src/DotNetMashup.Web/blogfeed.json submit a PR
Contributions are welcome, submit an issue with the feature you would like to add so we can discuss it ahead of time. To get the various feeds working you must add api keys to the startup.cs
file.
You will need twitter, and github keys (or you can turn off said feeds in RepositoryFactory.cs)
You will need to do something like the following in startup.cs
(please remember to not commit this). Usually these keys come from environment variables, you could also place them there, and not worry about altering startup.cs
public Startup(IHostingEnvironment env, IApplicationEnvironment appEnv)
{
config = new ConfigurationBuilder()
.AddEnvironmentVariables()
.Build();
config["github"] = "githubkeyhere";
config["twitterkey"] = "Consumer Key";
config["twittersecret"] = "Consumer Secret ";
config["twittertokenKey"] = "Access Token";
config["twittertokenSecret"] = "Access Token Secret";
}