Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Awaken online voting system #1

Open
wants to merge 18 commits into
base: master
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
The table of contents is too big for display.
Diff view
Diff view
  •  
  •  
  •  
The diff you're trying to view is too large. We only load the first 3000 changed files.
17 changes: 17 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
# EditorConfig helps developers define and maintain consistent coding styles between different editors and IDEs
# editorconfig.org

root = true

[*]
indent_style = space
indent_size = 2

# We recommend you to keep these unchanged
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = true
insert_final_newline = true

[*.md]
trim_trailing_whitespace = false
64 changes: 64 additions & 0 deletions .github/CONTRIBUTING.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,64 @@
# Contributing to the Ionic Conference Application

Thank you for taking the time to contribute! :tada::+1:

The following is a set of guidelines for contributing to the conference app. These are just guidelines, not rules, use your best judgment and feel free to propose changes to this document in a pull request.

## Table of Contents
- [How To Contribute](#how-to-contribute)
- [Reporting Issues](#reporting-issues)
- [Before Submitting an Issue](#before-submitting-an-issue)
- [Determining the Repository](#determining-the-repository)
- [Submitting the Issue](#submitting-the-issue)
- [Submitting a Pull Request](#submitting-a-pull-request)
- [Guidelines for Submitting](#guidelines-for-submitting)
- [Code Style](#code-style)

## How To Contribute

### Reporting Issues

Before submitting an issue, please go through [the list below](#before-submitting-an-issue) as you might find a solution to your issue.

#### Before Submitting an Issue

* Make sure you get the latest version of the code and run through the [Getting Started](https://github.com/driftyco/awaken-direct-democracy#getting-started) steps to see if this resolves your issue.
* Check the [forum](https://forum.ionicframework.com) for similar questions and answers.
* Go through [all issues](https://github.com/driftyco/awaken-direct-democracy/issues?utf8=%E2%9C%93&q=is%3Aissue) on this repository to see if the issue has already been created. It could have been closed with a resolution, so check closed issues, too.
* Chat with us in the [#ionic-v2](https://ionic-worldwide.slack.com/messages/ionic-v2/) channel on [Slack](http://ionicworldwide.herokuapp.com/) to see if we can find a solution to the problem!
* [Determine which repository](#determining-the-repository) the problem should be reported in.


#### Determining the Repository

There are several repositories being used for Ionic, which makes it difficult to determine which one to report an issue to. Don't worry if you aren't sure, we can always move it!

* The [Ionic repository](https://github.com/driftyco/ionic) is a repository for all things related to the Ionic Framework. If you are able to reproduce the issue in any of the Ionic starters (or an existing project), you'll want to submit the issue [here](http://ionicframework.com/submit-issue/).
* The [Ionic CLI repository](https://github.com/driftyco/ionic-cli) contains all of the code that allows you to run `ionic` commands from a terminal window. It is safe to put any issues [here](https://github.com/driftyco/ionic-cli/issues) that relate to running an `ionic` command.
* [This repository](https://github.com/driftyco/awaken-direct-democracy) is a demo of the Ionic 2 Framework. If you find an issue with this app that does not occur on [a new app](http://ionicframework.com/docs/v2/getting-started/installation/), please submit the issue [here](https://github.com/driftyco/awaken-direct-democracy/issues).


#### Submitting the Issue

* **Use a clear and descriptive title** for the issue to identify the problem. This makes it easier for others to find.
* **Describe the exact steps to reproduce the problem** with as many details as needed.
* **Provide your configuration** by running `ionic info` in a terminal from *within* the project folder and pasting this information in the issue.

### Submitting a Pull Request

#### Guidelines for Submitting

When in doubt, keep your pull requests small. To give a PR the best chance of getting accepted, do not bundle more than one "feature" or bug fix per PR. Doing so makes it very hard to accept it if one of the fixes has issues.

It's always best to create two smaller PRs than one big one.

Talk to us before creating a PR that refactors the code or directory structure of the project. This project is constantly changing to reflect the latest version of Ionic 2.0 so sometimes it will be in the process of getting fixed.

#### Code Style

Make sure to follow the existing code style as much as possible.

* No underscores prefixing JS functions.
* Use flat Sass.
* **Don't** use [BEM conventions](https://css-tricks.com/bem-101/).
* Avoid nesting selectors. This is done to make it easier for users without Sass experience to understand and read.
25 changes: 25 additions & 0 deletions .github/ISSUE_TEMPLATE.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
**Note: for support questions, please use one of these channels:**

https://forum.ionicframework.com/
http://ionicworldwide.herokuapp.com/


#### Short description of the problem:


#### What behavior are you expecting?


**Steps to reproduce:**
1.
2.
3.

```
insert any relevant code between the above and below backticks (```)
```

**Other information:** (e.g. stacktraces, related issues, suggestions how to fix, stackoverflow links, forum links, etc)


**Run `ionic info` from terminal/cmd prompt:** (paste output below)
8 changes: 8 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,8 @@

server/config.js

server/accounts.js

g api key.txt.secret

apps.googleusercontent.com.json.secret
1 change: 1 addition & 0 deletions .io-config.json
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
{"app_id":"41723d48","api_key":"faad500b638ee821f7ad8d89337ee400faf4f3b2899c6ba3"}
10 changes: 10 additions & 0 deletions .meteor/packages
Original file line number Diff line number Diff line change
Expand Up @@ -38,5 +38,15 @@ netanelgilad:angular-sortable-view
cfs:graphicsmagick
socially-browser
socially-mobile
awaken-browser
awaken-mobile
okland:accounts-phone
pbastowski:[email protected]
jagi:google-oauth-jwt
accounts-oauth
google
accounts-google
service-configuration
accounts-ui
angular-meteor-auth
bozhao:link-accounts
23 changes: 15 additions & 8 deletions .meteor/versions
Original file line number Diff line number Diff line change
@@ -1,20 +1,22 @@
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
alexk111:[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
angular:[email protected]
angular:[email protected]
angular:[email protected]
angular:[email protected]
angular:[email protected]
angularui:angular-google-maps@2.2.1
angularui:angular-google-maps@2.3.2
angularui:[email protected]
angularui:[email protected]
angularutils:[email protected]_2
Expand All @@ -28,6 +30,7 @@ [email protected]
[email protected]
[email protected]
[email protected]
bozhao:[email protected]
[email protected]
[email protected]
[email protected]
Expand Down Expand Up @@ -69,11 +72,13 @@ [email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
jagi:[email protected]
[email protected]
lai:[email protected]
[email protected]
Expand All @@ -100,9 +105,9 @@ [email protected]
[email protected]
okland:[email protected]
[email protected]
pbastowski:[email protected].8
pbastowski:[email protected].9
pbastowski:[email protected]
planettraining:material-design-icons@2.0.0
planettraining:material-design-icons@2.2.0
[email protected]
raix:[email protected]
[email protected]
Expand All @@ -117,14 +122,16 @@ [email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
[email protected]
stevezhu:lodash@1.0.2
stevezhu:lodash@3.5.0_3
[email protected]
[email protected]
tmeasday:[email protected].2
tmeasday:[email protected].3
[email protected]
[email protected]
[email protected]
Expand Down
9 changes: 9 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
language: node_js
node_js:
- "0.10"
before_install:
- "curl -L http://git.io/3l-rRA | /bin/sh"
services:
- mongodb
env:
- LAIKA_OPTIONS="-t 5000"
Loading