Skip to content

Commit

Permalink
added README
Browse files Browse the repository at this point in the history
  • Loading branch information
aresnik11 committed Nov 26, 2019
1 parent 55b2b48 commit dc8d144
Show file tree
Hide file tree
Showing 2 changed files with 42 additions and 13 deletions.
49 changes: 36 additions & 13 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,24 +1,47 @@
# README
# Set Game

This README would normally document whatever steps are necessary to get the
application up and running.
Set Game is single page app that lets user play the game SET.

Things you may want to cover:
![Set Game](https://user-images.githubusercontent.com/8761638/69589475-2f4b0200-0fba-11ea-8f41-5a131079261f.png)

* Ruby version
## Demo

* System dependencies
You can watch a live demo of the app [here](#) or visit [https://best-set-game.netlify.com](https://best-set-game.netlify.com) to play!

* Configuration
## Technology Used

* Database creation
* Vanilla JavaScript
* Ruby on Rails
* PostgreSQL database
* Semantic UI
* Custom CSS

* Database initialization
The GitHub repo for the backend can be found [here](https://github.com/aresnik11/set-game-backend).

* How to run the test suite
## Features

* Services (job queues, cache servers, search engines, etc.)
Set Game allows users to:

* Deployment instructions
* Start a new game
* Read the rules of how to play
* See high scores
* Select cards that may be a set
* Visually see if selected cards are a correct set
* Check if there is a set on the board
* Visually see if there is a set on the board, if there is not, the cards will reshuffle
* See how much time has elapsed in their game
* Pause the game
* See how many cards are remaining in the deck

* ...
## How To Use

Visit [https://best-set-game.netlify.com](https://best-set-game.netlify.com) to play!

To test on your own machine:
1. Visit the backend repo [here](https://github.com/aresnik11/set-game-backend) and follow instructions on the README. The backend server should be started before the next steps are run.
2. Clone this repository
3. Update all fetch request urls in `index.js` to the url where your rails server is running
4. In terminal run `npm install`
5. In terminal run `npm start`

## Enjoy!
6 changes: 6 additions & 0 deletions index.html
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@
<head>
<meta charset="UTF-8">
<title>Set</title>
<meta name="keywords" content="set, set game" />
<meta name="description" content="Set game" />
<meta property="og:description" content="Set game" />
<meta property="og:title" content="Set" />
<meta property="og:url" content="https://best-set-game.netlify.com" />
<meta property="og:type" content="website" />
<link rel="stylesheet" type="text/css" href="./Semantic-UI-CSS-master/semantic.min.css">
<link rel="stylesheet" type="text/css" href="index.css">
<script defer type="text/javascript" src="index.js"></script>
Expand Down

0 comments on commit dc8d144

Please sign in to comment.