A "Guess the StackOverflow accepted answer" webapp game
  • JavaScript 90.5%
  • C# 8.5%
  • CSS 0.4%
  • HTML 0.4%
  • Handlebars 0.2%
Find a file
2017-04-16 23:36:22 -05:00
stackattack Added score box and results display. 2017-04-16 23:36:22 -05:00
stackattack.Tests Fleshed out the basic structure. 2017-04-13 01:34:28 -05:00
.gitattributes Added basic app structure 2017-04-12 00:03:30 -05:00
.gitignore Finished persistence layer. 2017-04-13 22:19:38 -05:00
LICENSE Added basic app structure 2017-04-12 00:03:30 -05:00
packages.config Added basic app structure 2017-04-12 00:03:30 -05:00
README.md Added some instructions 2017-04-14 12:00:47 -05:00
stackattack.sln Added basic app structure 2017-04-12 00:03:30 -05:00

stackattack

A "Guess the StackOverflow accepted answer" webapp game

Build Instructions

  • Restore the Nuget packages
  • Run npm install in the stackattack directory.

The app uses an SQLite database which it builds in the stackattack directory if it can't be found.

Settings

The following settings are available in the web.config

  • MaxQuestions
    • The amount of questions the app will retrieve and store.
    • Defaults to 20
  • SQLiteDatabasePath
    • The path to your custom SQLite database file.
    • Defaults to stackattack\stackattack.sqlite

Sidenotes

The stackattack\Scripts\src directory contains the outline of an angular version of the app, but as I do not know angular, it was really slowing me down. Hence, I created src2 which is a more rough hewn, get it done JS approach.