Skip to content

Latest commit

 

History

History
149 lines (115 loc) · 5.38 KB

README.md

File metadata and controls

149 lines (115 loc) · 5.38 KB

Censorship Against Humanity

Censorship Against Humanity is a censored version of Cards Against Humanity. In its current form, it's a one person game. When the user flips over the start game card, a random black and white card are generated. The user can then draw up to four more cards, for a total "hand" of five cards. The user can select a winning card and start another game.

Authors

Alesandria Wild, Casey Hill, Eva Kemp, Jase Grable, Lindsay Warr, Sage Paden

Table of Contents

General Information

  • The game was created for Team Week 2 at Epicodus. It was built mainly with C# and .NET, with additional JavaScript for functionality.

Technologies Used

  • C#/.NET
  • AspNet Core
  • JavaScript
  • Git
  • GitHub
  • Microsoft Entity Framework
  • Razor
  • MySql
  • EFCore Design
  • EFCore Migration
  • MySql Workbench
  • Markdown

Setup/Installation Requirements 💻

Initial Setup
  • Clone this repository to your local machine.
    $ git clone https://github.com/ThatAltGirlAlesandria/CAH2.0.git
  • Open VS Code (or your IDE of choice).
  • Open the top level directory CAH
Database Setup
  • In the CAH Directory, create a file with the name appsettings.json and copy and paste the following code into this file:

    {
        "Logging": {
            "LogLevel": {
            "Default": "Information",
            "Microsoft.AspNetCore": "Warning"
            }
        },
        "AllowedHosts": "*",
        "ConnectionStrings": {
            "DefaultConnection": "Server=localhost;Port=3306;database=cahdb;uid=[YOUR_UID];pwd=[YOUR_PASSWORD];"
        }
    }
  • Use your personal UID and Password for your db connection and make sure you remove the brackets currently in place.

  • Run the following commands

dotnet ef migrations add InitialMigration
dotnet ef database update
Finish Setup
  • In your terminal:

    Change directory (cd) to CAH folder.

    $ dotnet build
    $ dotnet run

    (or dotnet watch run to avoid reloading with edits in real time).

  • A web page will automatically open in your browser at port 5000 or 5001.

    • If the page does not automatically open, check your project's terminal and click the localhost port link or copy and paste the following into your browser: https://localhost:5001/ or https://localhost:5001/ depending on what port is being used.
  • Add your admin password to authorize the program to run.

Project Status

Project is mostly complete. There is hope in the future to make the application into a multi-player game. 👯

Known Bugs

  • Some CSS styling not functioning as expected and may present accessibility issues.
  • There are some typos present on the cards.

Acknowledgements

We would like to acknowledge the creative influence of the renowned card game, Cards Against Humanity, which served as an inspiration for the development of our app. We do not claim any ownership or affiliation with the creators of the original game.

Contact

Please contact either
👾 [email protected] 👾

👻 [email protected] 💀

💃 [email protected] 💃

🍁 [email protected] 🍁

🦁 [email protected] 🦁

👈 🤠 👉 [email protected] 👈 🤠 👉

with any the following:

  • Found bugs 🐞
  • General questions ❓
  • Concerns about particular cards 🤠
Copyright (c) 2023 Alesandria, Casey, Eva, Jase, Lindsay, Sage
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.