Skip to content
forked from lukevella/rallly

Rallly is a free group meeting scheduling tool

License

Notifications You must be signed in to change notification settings

9j7axvsLuF/rallly

 
 

Repository files navigation

Actions Status License: AGPL v3 Donate

hero

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
[email protected]
# 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
[email protected]
# 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

These companies have graciously offered their services in support of this project.

Powered by Vercel     Sentry     Sentry

About

Rallly is a free group meeting scheduling tool

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 88.5%
  • HTML 7.3%
  • CSS 1.7%
  • JavaScript 1.7%
  • PLpgSQL 0.5%
  • Shell 0.2%
  • Dockerfile 0.1%