Band Tracker

Application using C#, SQL, Nancy, Razor, and Xunit that tracks the venues a band has played at and what bands have played at a particular venue, 12/16/16

By James R. Howard

Description

This application uses SQL databases to save information on bands and venues. The saved bands or venues can be assigned to one another, for instance; The band Kiss has played at the Moda Center. This joins the information from the different tables. This application uses many to many relationships ie(a band can have played at many venues, and a venue can have many bands that have played there). The application also allows the user to update venue and band information as well as delete it, giving it full CRUD functionality.

Setup/Installation Requirements

  • Windows OS
  • Clone file from GitHub.com
  • Open SQL
  • Copy the band_tracker.sql file(found in project folder)
  • Click on New Query(Ctrl + N) in SQL
  • Paste the scripts and hit Execute(F5)
  • Open Windows PowerShell
  • Use command >dnu restore
  • Use command >dnx kestrel
  • Open a Chrome browser
  • Go To http://localhost:5004

__

Known Bugs

There are no known bugs at this point in time.

Support and contact details

If you have any questions or concerns please contact me at jrh682@gmail.com

Technologies Used

This application uses

  • HTML
  • C#
  • "Microsoft.AspNet.Server.Kestrel": "1.0.0-*"
  • "Microsoft.AspNet.Owin": "1.0.0-*"
  • "Nancy": "1.3.0"
  • "Nancy.ViewEngines.Razor": "1.3.0
  • "xunit": "2.1.0"
  • "xunit.runner.dnx": "2.1.0-rc1-*"
  • SQL

License

*The MIT License (MIT) Copyright (c) <2016>

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.*

Copyright (c) 2016 James R. Howard Student at EPICODUS