Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/jfeigel/memory-the-matching-game
Instagram memory game
https://github.com/jfeigel/memory-the-matching-game
Last synced: 29 days ago
JSON representation
Instagram memory game
- Host: GitHub
- URL: https://github.com/jfeigel/memory-the-matching-game
- Owner: jfeigel
- License: mit
- Created: 2016-09-12T11:59:56.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-09-20T12:30:23.000Z (over 8 years ago)
- Last Synced: 2024-10-29T22:15:45.389Z (2 months ago)
- Language: JavaScript
- Size: 25.4 KB
- Stars: 0
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# :white_large_square: :diamonds: Memory the Matching Game
A memory game using images from Instagram.## Prerequisites
* [Node.js](https://nodejs.org/en/) (Version 5 and up recommended)
* [MongoDB](https://www.mongodb.com/)
* [Instagram Client ID and Secret](https://instagram.com/developer) (for OAuth)### Installation
* Clone down the repository.
```
git clone https://github.com/jfeigel/memory-the-matching-game.git
```* Install packages (from inside the `memory-the-matching-game` folder).
```
npm install
```* Create your config. There's a `config.js.example` file in the root. Edit it to include all your values for the site and your OAuth information. Save it as `config.js` and leave it in the root.
* Start Mongo
```
npm run mongo
```* Start it up.
```
npm start
```* Compile the front-end assets
```
gulp
```* Enjoy!