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
2022-04-21 09:02:07 +01:00
.github Move FUNDING.yml and add paypal link 2022-04-21 09:02:07 +01:00
.vscode First public commit 2022-04-12 07:14:28 +01:00
api-client Keep demo values fixed 2022-04-15 19:09:28 +01:00
components Improvements to mobile UI (#119) 2022-04-20 16:09:38 +01:00
migrations Remove users with duplicate emails 2022-04-14 13:23:52 +01:00
pages Improvements to mobile UI (#119) 2022-04-20 16:09:38 +01:00
public Add warning when deleting options with votes 2022-04-15 18:08:28 +01:00
templates Fix email template issue for outlook 2022-04-13 10:28:20 +02:00
tests Improvements to mobile UI (#119) 2022-04-20 16:09:38 +01:00
utils Improvements to mobile UI (#119) 2022-04-20 16:09:38 +01:00
.dockerignore First public commit 2022-04-12 07:14:28 +01:00
.eslintrc.json Add eslint import rules 2022-04-16 10:14:28 +01:00
.gitignore First public commit 2022-04-12 07:14:28 +01:00
.prettierrc First public commit 2022-04-12 07:14:28 +01:00
db.ts First public commit 2022-04-12 07:14:28 +01:00
docker-compose.yml Move away from sendgrid 2022-04-13 14:55:29 +01:00
Dockerfile First public commit 2022-04-12 07:14:28 +01:00
environment.d.ts Move away from sendgrid 2022-04-13 14:55:29 +01:00
i18next.d.ts First public commit 2022-04-12 07:14:28 +01:00
LICENSE First public commit 2022-04-12 07:14:28 +01:00
next-env.d.ts First public commit 2022-04-12 07:14:28 +01:00
next-i18next.config.js First public commit 2022-04-12 07:14:28 +01:00
next.config.js Fix verification emails 2022-04-12 09:38:28 +01:00
package.json Use prettier to order tailwind classes 2022-04-16 10:26:53 +01:00
playwright.config.ts First public commit 2022-04-12 07:14:28 +01:00
postcss.config.js First public commit 2022-04-12 07:14:28 +01:00
README.md Move FUNDING.yml and add paypal link 2022-04-21 09:02:07 +01:00
sample.env Update README 2022-04-13 16:38:43 +01:00
schema.prisma Remove users with duplicate emails 2022-04-14 13:23:52 +01:00
sentry.client.config.js First public commit 2022-04-12 07:14:28 +01:00
sentry.properties First public commit 2022-04-12 07:14:28 +01:00
sentry.server.config.js First public commit 2022-04-12 07:14:28 +01:00
style.css Improvements to mobile UI (#119) 2022-04-20 16:09:38 +01:00
tailwind.config.js First public commit 2022-04-12 07:14:28 +01:00
tsconfig.json First public commit 2022-04-12 07:14:28 +01:00
yarn.lock Use prettier to order tailwind classes 2022-04-16 10:26:53 +01:00

Actions Status Donate

Rallly is a free group meeting scheduling tool built with Next.js, Prisma & TailwindCSS

🐳 Quickstart with docker

For running in a production environment

Clone this repo and change directory to the root of the repository.

git clone https://github.com/lukevella/rallly.git
cd Rallly

optional: Configure your SMTP server. Without this, Rallly won't be able to send out emails. You can set the following environment variables in a .env in the root of the project

# support email - used as FROM email by SMTP server
SUPPORT_EMAIL=foo@yourdomain.com
# SMTP server - required if you want to send emails
SMTP_HOST=your-smtp-server
SMTP_PORT=587
SMTP_SECURE="false"
SMTP_USER=your-smtp-user
SMTP_PWD=your-smtp-password

Build and run with docker-compose

docker-compose up -d

Go to http://localhost:3000

💻 Running locally

Clone this repo and change directory to the root of the repository.

git clone https://github.com/lukevella/rallly.git
cd Rallly

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

cp sample.env .env

Fill in the required environment variables.

# postgres database - not needed if running with docker-compose
DATABASE_URL=postgres://your-database/db
# support email - used as FROM email by SMTP server
SUPPORT_EMAIL=foo@yourdomain.com
# SMTP server - required if you want to send emails
SMTP_HOST=your-smtp-server
SMTP_PORT=587
SMTP_SECURE="false"
SMTP_USER=your-smtp-user
SMTP_PWD=your-smtp-password

Install dependencies

yarn

Next we need to run the database migrations to create our tables

yarn prisma migrate deploy

Start the Next.js server

# For development
yarn dev
# For production
yarn build
yarn start

👨‍💻 Contributors

If you would like to contribute to the development of the project please reach out first before spending significant time on it.

👮‍♂️ License

Rallly is open-source under the GNU Affero General Public License Version 3 (AGPLv3) or any later version. See LICENSE for more detail.

🙏 Sponsors

Powered by Vercel