Git Product home page Git Product logo

jadegrizzly's Introduction

Snapshot Olympics

Organized photo scavenger hunts for friends, family and more.

Team

  • Product Owner: Christian Perez
  • Scrum Master: Cory Asato
  • Development Team Members: Rene Polo, David Raleigh

Table of Contents

  1. Usage
  2. Requirements
  3. Development
    1. Installing Dependencies
    2. Tasks
  4. Team
  5. Contributing

Usage

Some usage instructions

Requirements

  • meteor 1.0.x

Development

Installing Dependencies

From within the root directory:

curl https://install.meteor.com/ | sh

To launch the app from your terminal:

meteor

To simulate running on iOS:

meteor install-sdk ios
meteor add-platform ios
meteor run  ios

To run on an iOS device:

meteor run ios-device

For more info on iOS or Android installation, check here

Required packages are already installed. The full list can be found here:

.meteor/packages

Database OverView

We used 4 different Mongo Collections The 'players' collection is accessed by the Players variable The 'games' collection is accessed by the Games variable The 'images' collection is accessed by the Images variable

Meteor provides a 'users' collection that comes with the accounts-ui package. It is accessed through calls to Meteor.user() and Meteor.userId()

We didn't use mongoose to define schemas for the project (I don't even know if it's possible), but in documenting the database we're going to imitate mongoose's layout for clairty:

var playerSchema = new Schema({ _id: String, /assigned in code based off of the Meteor.userId(), for continuity/ gameList: [String, String, ...] /mongoIds for games player is currently playing/ });

var gameSchema = new Schema({ _id: String, /dynamically created by mongo/ gameName: String, /non-unique game/ createdBy: String, /*Meteor.userId() of game creator */ participants: [String, String, String,...], /userIds. players participating in game/ featList: [{name:String}, {name:String}, {name:String},... ] /array of featName objects (this could be an array of featnames, without objects, but this design was left over from when featList contained more details)/ });

var imagesSchema = new Schema({ _id: String, /dynamically created by mongo/ userId: String, /Meteor.userId() of image creator/ username: String, /Meteor.user().username/ gameId: String, /mongoIds for game image is associated with/ featName: String, /name associated with each feat from featList/ photoURL: ImageData, /image data/ voteCount: Integer, /increment or decrements as people vote on the photo/ downVotes: [String, String, String, ...], /userIds. In order to keep people from downvoting twice, we maintained a list of people who had down voted the image/ upVotes: [String, String, String, ...], /userIds. In order to keep people from upvoting twice, we maintained a list of people who had up voted the image/ });

Roadmap

View the project roadmap here

Contributing

See CONTRIBUTING.md for contribution guidelines.

Stories in Ready

jadegrizzly's People

Contributors

chitopolo avatar cmperez avatar coryasato avatar davidraleigh avatar robertn702 avatar

Watchers

 avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.