Self-hostable doodle poll alternative. Find the best date for a meeting with your colleagues or friends without the back and forth emails.
Find a file
2015-03-01 13:27:43 +01:00
api/event Updated notifications 2015-02-12 21:46:52 +01:00
bin Update & Bugfixes 2015-01-28 11:46:03 +01:00
config Created install script and added comments 2015-02-13 11:55:41 +01:00
helpers Fixed bug / Updated template 2015-02-12 21:59:05 +01:00
public Removed unused packages 2015-03-01 13:27:43 +01:00
views SEO Update 2015-03-01 13:11:43 +01:00
.bowerrc First Commit 2015-01-10 15:43:05 +01:00
.gitignore Updated .gitignore 2015-01-26 19:30:29 +01:00
app.js Landin Page 2015-02-11 12:17:29 +01:00
bower.json Removed unused packages 2015-03-01 13:27:43 +01:00
communicator.js New Features 2015-01-26 13:11:48 +01:00
gulpfile.js Removed unused packages 2015-03-01 13:27:43 +01:00
install.sh Updated build script 2015-02-13 12:16:29 +01:00
LICENSE.txt Create LICENSE.txt 2015-02-13 11:50:34 +01:00
package.json Removed unused packages 2015-03-01 13:27:43 +01:00
README.md Update README.md 2015-02-20 22:40:53 +01:00

Rallly

Rallly is a free collaborative scheduling service that helps you and your friends vote on a date to host an event. The application has been developed with the MEAN stack of technologies.

Requirements

To run Rallly you will need:

  • MongoDB
  • Node.js + npm
  • Bower

Setup

Clone the repository on your machine and set the current directory to the root of the repository

git clone git@github.com:lukevella/Rallly.git
cd Rallly

Run the install script. You may need to adjust the permissions of the file to execute (chmod 775 install.sh). This will install the node and bower dependencies and create a sample configuration file.

./install.sh

Configuration

Open up config/main.js and fill in the parameters.

app.set('port', 3000);
app.set('siteUrl', ''); // Used for creating an absolute URL
app.set('absoluteUrl', function(path){
    // If you're using port 80 or a proxy, remove the port from the absoluteUrl
    return app.get('siteUrl') + ':' + app.get('port') + '/' + path;
});
app.set('dbname', ''); // MongoDB database name
app.set('dbuser', ''); // MongoDB user name
app.set('dbpwd', ''); // MongoDB user password
app.set('mandrillAPIKey',''); // https://mandrillapp.com

Development

If you're going to be developing, run the watch task with gulp. Gulp is used to build the css (with sass), js and templates.

gulp watch

Running

To start the node server simply run npm start.

License

See the LICENSE file for license rights and limitations (CC-BY-NC)