This is the awesome app with with you be able to collect in the most easy way any kind of opinion or preferece from anyone.
For example:
- Are you trying to know the best date to a plan with you friends? POLL THEM!!
- Are you trying to decide which Star Wars movie is better? POLL THEM!!
- Are you trying to find out which friend of yours knows you better? POLL THEM!!
Enter now and try it out, it's free FOREVER
The project follow this development technology stack:
- Angular2
- Webpack
- Node
And the build outputs all the static files that can be easily served from a web server.
Table of Contents generated with DocToc
- Requirements
- Start working with the project
- Development flow
- Package scripts
- Enviroments
- Architecture
- Continuous integration (CI)
The only thing you need is:
- Node >= 4.x
- Npm >= 3.x
To contribute you just need to clone the repo and install the node dependencies, then you can run any package script.
# Clone the repo and enter inside
git clone git@github.com:Poll-me/poll-me-webapp.git
# by HTTPS: https://github.com/Poll-me/poll-me-webapp.git
cd poll-me-webapp
# install node dependencies
npm install
# Start the dev server with a watcher running
npm start
You must follow this guidelines in order to contribute to the project in any way.
As the project do not have a task builder like Grunt or Gulp we need to use the npm package scripts to run the tasks that manage the workflow of the project.
All of this scripts are listed here
This project contemplate many possible environments that are used at different parts of the source code, for example, at webpack configuration.
- Development (
dev
): the environment for develop the project. For example at developers computers. - Test (
test
): the environment for the tests execution. - Continuous Integration (
ci
): the environment executed by the CI runner. - Production (
prod
): the environment for serve the production app files. For example at deploy environments.
The app have a structure that ensure readability, maintainability and scalability.
When you want to collaborate on the project you MUST consider this architecture as guideline in order to add new functionality.
Details are exposed at specific docs here
The central pillar of development flow, all the commits pushed to the remote github
repository have to pass the pipeline of the project at CI to can merge to develop
branch and then to master
.
The CI of the project is based on Travis CI, you can see the official documentation
here. The configturation of the project that set how
the project is checked at CI is .travis.yml
, if you want to know more about the CI
configuration for the project see the official docs.