Skip to content

Reptarsrage/bestClipOfTheWeek

Repository files navigation

An ASP.NET Core Web App

codecov github

Description

This is my attempt to tally the votes for StoneMountain64's Best Clip of the Week video series.

This site is not meant for a wide range of users. Mostly just one, although now that I've made it I possibly see a little room for growth. My intention was to have a program that took a YouTube URL and a list of terms and returned a count of votes for each term by sifting through the video comments. After I completed this I thought, 'wouldn't it be cool if I could play with the terms, store them and manipulate them?' Well this whim lead to a backend server and a service running on Azure. Then I thought, wouldn't it be cool if I had some charts? Turns out there are a ton of free, cool charting libraries. Then I figured since I have a database that may or may not charge me money for heavy use, I need some security. This drove me to implement a login system.

After all that was said and done, I had kind of this clunky, but cool looking website (thanks bootstrap). There are a couple of things that I haven't gotten to yet. The biggest one is improving the client-side code structure. I have far more experience with server-side coding and I rely heavily on public libraries like bootstrap and react to do front end work. There is also the issue with errors cropping up. I didn't write many unit tests as this was just kind of an ad-hoc fun project and I didn't want to deal with the overhead. There are some heavy restrictions on my back-end server size, the amount of API calls I can make, and a few other limiting factors. There are some errors with showing/hiding loading and error messages that still need to be worked out. There are many moving client-side pieces here, and if one fails the site doesn't work, it would be nice to come up with a solution for this as well.

I had a super fun time making this site. Flaws and all I think it turned out well.

Credits

TODO

Goals

  • Drop PHP/MySql service layer and use Entity Framework & SQL Server
  • Migrate site to Net Core 2.0
  • Update site to SSL
  • Add Application Insights
  • Migrate site to Net Core 2.1
  • Switch to new Razor Page Identity Scaffolding
  • Switch to a front end framework such as React
  • Add (at least one) unit tests
  • Add User Secrets for local development
  • Set up a continuous deployment pipeline (Appveyor/Github/CodeCov)
  • Privacy Statement and GDPR compliance
  • Use AutoMapper for server-side model conversion
  • Fix client-side error handeling
  • Add site logging
  • Add Integration tests
  • Add fancier animations

Stretch Goals

Useful Notes

Docker (docs)

Build docker container

docker build -t bestclipoftheweek:latest .

Run docker container

docker run -it -p 5000:5000 -p 80:80 -e ASPNETCORE_URLS='http://*:5000' bestclipoftheweek:latest

User Secrets (docs)

Set multiple secrets

type .\input.json | dotnet user-secrets set

Set secret

dotnet user-secrets set <NAME> <VALUE>

Lsit secrets

dotnet user-secrets list

Entity Framework (docs)

Update the database to a specified migration

dotnet ef database update --project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj --startup-project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj

Drop the database

dotnet ef database drop --project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj --startup-project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj

Add a new migration

dotnet ef migrations add <NAME> --project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj --startup-project .\src\BestClipOfTheWeek\BestClipOfTheWeek.csproj

npm (docs)

To install on Linux run

curl -sL https://deb.nodesource.com/setup_8.x | sudo -E bash -
sudo apt-get install -y nodejs
node --version

To install on Windows run

choco install -y nodejs.install
refreshenv
node --version

yarn (docs)

To install on Linux run

curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | sudo apt-key add -
echo "deb https://dl.yarnpkg.com/debian/ stable main" | sudo tee /etc/apt/sources.list.d/yarn.list
sudo apt-get update && sudo apt-get install yarn
yarn --version

To install on Windows run

choco install -y yarn
refreshenv
yarn --version

Set up Third-Party Authentication (docs)

Follow instructions in the docs.

Support

Feel free to contact me directly with any questions or concerns related to the site. I'm definitely open to criticism, ideas, suggestions and even more open to praise.

Contact me

About

Side project website using YouTube data/Analytics, Google+, Google Charts API's to tally up votes for TBCotW videos.

Topics

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •