Skip to content

Track App Bugs and Suggestions. Using C#, HTML, and MySQL

Notifications You must be signed in to change notification settings

mmanchee/BugLister

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

BugLister

C# ASP.NET MCV w/ MySQL Project for Epicodus, October 7th, 2020

By Mike Manchee, Daniel Schaaf, and William Donovan-Seid

Description

This project was built to help out with tracking bugs and help to remember trick from the past. User can add Project that they have worked on in the past or are working on now. Add Languages, so when you try and do something 2 years from now you can have reminders. Users can search the issue based on any word or fragment. In the issue you can add links to solutions or documentation, link the issue to projects and languages, and add the type or severity of the issue.

Specs

Spec Input Output
1. Create Issues and Language Classes ... ...
2. Build Issue Controllers for Index, Create, Delete, Details, Edit, and Search ... ...
3. Build Language Controllers for Index, Create, Delete, Details, and Edit ... ...
4. Build Home Controllers for Index ... ...
5. Build Home Views for Index ... ...
6. Build Issue Views for Index, Create, Delete, Details, Edit, and Search ... ...
7. Build Language Views for Index, Create, Delete, Details, and Edit ... ...
8. Add Links to Issue Class and HTML ... ...
9. Build Project Controllers for Index, Create, Delete, Details, and Edit ... ...
10. Build Project Views for Index, Create, Delete, Details, and Edit ... ...
11. Add CSS and Styling ... ...

Setup/Installation Requirements

Project from GitHub

  • Download option

    • Download files from GitHub repository by click Code and Download Zip
    • Extract files into a single directory
    • Run GitBASH in directory
    • Type "dotnet restore" to get bin and obj files
    • Type "dotnet run" in GitBash to run the program
    • Add database per the instructions below.
    • Have fun with BugLister
  • Cloning options

    • For cloning please use the following GitHub tutorial
    • Place files into a single directory
    • Run GitBASH in directory
    • Type "dotnet restore" to get bin and obj files
    • Type "dotnet run" in GitBash to run the program
    • Add database per the instructions below.
    • Have fun with BugLister

Database Setup

  • Setup with SQL statements

    • Enter the following code into your SQL database and run.
    CREATE DATABASE `buglister` /*!40100 DEFAULT CHARACTER SET utf8mb4 COLLATE utf8mb4_0900_ai_ci */ /*!80016 DEFAULT ENCRYPTION='N' */;
    USE 'buglister';
    CREATE TABLE `issues` (
      `IssueId` int NOT NULL AUTO_INCREMENT,
      `Title` varchar(255) DEFAULT NULL,
      `Type` varchar(255) DEFAULT NULL,
      `Description` varchar(255) DEFAULT NULL,
      `Solution` varchar(255) DEFAULT NULL,
      `LanguageId` int DEFAULT '0',
      `Link1` varchar(255) DEFAULT NULL,
      `Link2` varchar(255) DEFAULT NULL,
      `Link3` varchar(255) DEFAULT NULL,
      `ProjectId` int DEFAULT '0',
      PRIMARY KEY (`IssueId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=11 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
    CREATE TABLE `languages` (
      `LanguageId` int NOT NULL AUTO_INCREMENT,
      `LanguageName` varchar(255) DEFAULT NULL,
      `DocLink` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`LanguageId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=13 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
    CREATE TABLE `projects` (
      `ProjectId` int NOT NULL AUTO_INCREMENT,
      `ProjectName` varchar(255) DEFAULT NULL,
      `Description` varchar(255) DEFAULT NULL,
      `Link` varchar(255) DEFAULT NULL,
      PRIMARY KEY (`ProjectId`)
    ) ENGINE=InnoDB AUTO_INCREMENT=2 DEFAULT CHARSET=utf8mb4 COLLATE=utf8mb4_0900_ai_ci;
    • Go to appsettings.json and change the password if needed.
  • Setup with SQL Import

    • MySQL
      • In the Navigator > Administration window, select Data Import/Restore.
      • In Import Options select Import from Self-Contained File.
      • Navigate to buglister.sql.
      • Under Default Schema to be Imported To, select the New button.
        • Enter 'buglister' as the name of your database.
        • Click Ok.
      • Click Start Import.
    • Go to appsettings.json and change the password if needed.

Known Bugs

No Known Bugs

Technologies Used

Main Programs

  • MySQL
  • C# / ASP.NET Core
  • MVC
  • MSTest
  • CSS
  • Bootstrap

Other Links

GitHub Mike's GitHub Will's GitHub Daniel's GitHub

License

Copyright (c) 2020 {Mike Manchee, Daniel Schaaf, and William Donovan-Seid} Licensed under MIT

co-authored-by: William Donovan-Seid [email protected] Co-authored-by: Daniel Schaaf [email protected]"

About

Track App Bugs and Suggestions. Using C#, HTML, and MySQL

Topics

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •