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
2021-10-19 22:12:52 +01:00
api/event Rate limit all upstream requests 2019-09-13 23:57:11 +01:00
bin Switched from Jade to Pug. Improvements to docker. More docs. 2017-04-20 09:51:56 -04:00
config Update dependencies 2018-12-03 19:04:07 +00:00
docs Unix-style newlines with a newline ending every file! Added .editorconfig too. 2017-04-22 09:37:03 -04:00
helpers Fix typo (#52) 2018-05-27 13:16:57 +02:00
public Relax email regex 2021-10-19 22:12:52 +01:00
views Add link to lead page 2020-07-27 23:58:04 +01:00
.bowerrc First Commit 2015-01-10 15:43:05 +01:00
.dockerignore Unix-style newlines with a newline ending every file! Added .editorconfig too. 2017-04-22 09:37:03 -04:00
.editorconfig Unix-style newlines with a newline ending every file! Added .editorconfig too. 2017-04-22 09:37:03 -04:00
.gitignore Update config for use with dokku 2018-04-15 21:09:03 +02:00
.travis.yml Disable snyk 2017-05-22 11:59:39 +02:00
app.js Add support for maintenance 2018-04-15 21:14:29 +02:00
bower.json Update snyk policy 2017-05-22 11:52:57 +02:00
CHECKS Update config for use with dokku 2018-04-15 21:09:03 +02:00
communicator.js New Features 2015-01-26 13:11:48 +01:00
config.sample.json Update config for use with dokku 2018-04-15 21:09:03 +02:00
docker-compose.yml Limit event creation requests 2019-08-05 20:22:17 +01:00
Dockerfile Update config for use with dokku 2018-04-15 21:09:03 +02:00
gulpfile.js Removed unused packages 2015-03-01 13:27:43 +01:00
install.js Update config for use with dokku 2018-04-15 21:09:03 +02:00
LICENSE Update license 2018-03-24 21:57:17 +01:00
package-lock.json Limit event creation requests 2019-08-05 20:22:17 +01:00
package.json Limit event creation requests 2019-08-05 20:22:17 +01:00
README.md Update config for use with dokku 2018-04-15 21:09:03 +02:00
sample.env Unix-style newlines with a newline ending every file! Added .editorconfig too. 2017-04-22 09:37:03 -04:00

c3bc254fbaf76152cc6a9dc5d91714874bfc294b8d8d785db87157ed68aa2b3c45e82ab55f6f0e346aeec0bca00ea85862ba06e247ed4d365b968812fbc43c78

Build Status

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.

Getting Started Quickly with Docker

This assumes that you have Docker installed

To get started quickly and easily, simply run the following:

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

Copy the sample .env file then open it and set the variables.

cp sample.env .env

Now run the server!

docker-compose up -d

Now that was simple!

Manual Setup Detailed Production Docs

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. This will install the node and bower dependencies and create a configuration file.

npm run installation

Manual Configuration

Only do this if you did not run npm run installation

Run the config script.

npm run installation -- -p

Open up config.json and fill in the parameters.

{
    "port": 3000,
    "siteUrl": "http://localhost:3000", // Used for creating an absolute URL
    "fromName": "Rallly", // Email from name
    "fromEmail": "no-reploy@rallly.co", // Email from address
    "db": "mongodb://localhost:27017/rallly", // MongoDB connection string
    "smtpUser": "", // SMTP user name
    "smtpPwd": "", // SMTP user password
    "smtpHost": "", // SMTP host
    "smtpPort": 587 // SMTP port
}

Running

To start the node server simply run npm start.

Development Detailed Docs

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
npm start

License

See the LICENSE file.