An open-source alternative to Motion, designed for intelligent task scheduling and calendar management. FluidCalendar helps you stay on top of your tasks with smart scheduling capabilities, calendar integration, and customizable workflows.
This project is in active development and currently contains many bugs and incomplete features. It is not yet recommended for production use. If you encounter issues:
- Please check the existing issues to see if it's already reported
- If not found, create a new issue with:
- Steps to reproduce
- Expected behavior
- Actual behavior
- Any relevant error messages or screenshots
Your bug reports help make FluidCalendar better! We appreciate your patience and contributions as we work to stabilize the platform.
FluidCalendar is built for people who want full control over their scheduling workflow. It combines the power of automatic task scheduling with the flexibility of open-source software. Read more about the journey and motivation in Part 1 of my blog series.
If you find FluidCalendar useful, please consider supporting its development. Your sponsorship helps ensure continued maintenance and new features.
By becoming a sponsor, you:
- Help keep the project actively maintained
- Get early access to new features
- Support open-source software development
Don't want to self-host? We're currently beta testing our hosted version at FluidCalendar.com. Sign up for the waitlist to be among the first to experience the future of intelligent calendar management, with all the features of the open-source version plus:
- Managed infrastructure
- Automatic updates
- Premium support
- Advanced AI features
- 🤖 Intelligent Task Scheduling - Automatically schedule tasks based on your preferences and availability
- 📅 Calendar Integration - Seamless sync with Google Calendar (more providers coming soon)
- ⚡ Smart Time Slot Management - Finds optimal time slots based on your work hours and buffer preferences
- 🎨 Modern UI - Clean, responsive interface with smooth transitions
- 🔧 Customizable - Adjust scheduling algorithms and preferences to your needs
- 🔒 Privacy-Focused - Self-host your own instance
- Next.js 15 with App Router
- TypeScript
- Prisma for database management
- FullCalendar for calendar UI
- NextAuth.js for authentication
- Tailwind CSS for styling
- Node.js (version specified in
.nvmrc
) - A Google Cloud Project (for Google Calendar integration)
To enable Google Calendar integration:
-
Create a Project:
- Go to Google Cloud Console
- Click "New Project" and follow the prompts
- Note your Project ID
-
Enable Required APIs:
- In your project, go to "APIs & Services" > "Library"
- Search for and enable:
- Google Calendar API
- Google People API (for user profile information)
-
Configure OAuth Consent Screen:
- Go to "APIs & Services" > "OAuth consent screen"
- Choose "External" user type
- Fill in the required information:
- App name: "FluidCalendar" (or your preferred name)
- User support email
- Developer contact information
- Add scopes:
./auth/calendar.events
./auth/calendar.readonly
./auth/userinfo.email
./auth/userinfo.profile
- Add test users if in testing mode
-
Create OAuth 2.0 Credentials:
- Go to "APIs & Services" > "Credentials"
- Click "Create Credentials" > "OAuth client ID"
- Choose "Web application"
- Set Authorized JavaScript origins:
http://localhost:3000
(for development)- Your production URL (if deployed)
- Set Authorized redirect URIs:
http://localhost:3000/api/auth/callback/google
(for development)https://your-domain.com/api/auth/callback/google
(for production)
- Click "Create"
- Save the generated Client ID and Client Secret
-
Configure Credentials:
- Go to FluidCalendar Settings > System
- Enter your Google Client ID and Client Secret in the Google Calendar Integration section
- Or set environment variables as fallback:
GOOGLE_CLIENT_ID="your-client-id.apps.googleusercontent.com" GOOGLE_CLIENT_SECRET="your-client-secret"
Note: For production deployment, you'll need to:
- Verify your domain ownership
- Submit your application for verification if you plan to have more than 100 users
- Add your production domain to the authorized origins and redirect URIs
To enable Outlook Calendar integration:
-
Create an Azure AD Application:
- Go to Azure Portal
- Click "New registration"
- Name your application (e.g., "FluidCalendar")
- Under "Supported account types", select "Accounts in any organizational directory (Any Azure AD directory - Multitenant) and personal Microsoft accounts (e.g. Skype, Xbox)"
- Click "Register"
-
Configure Platform Settings:
- In your registered app, go to "Authentication"
- Click "Add a platform"
- Choose "Web"
- Add Redirect URIs:
http://localhost:3000/api/auth/callback/azure-ad
(for development)https://your-domain.com/api/auth/callback/azure-ad
(for production)
- Under "Implicit grant", check "Access tokens" and "ID tokens"
- Click "Configure"
-
Add API Permissions:
- Go to "API permissions"
- Click "Add a permission"
- Choose "Microsoft Graph"
- Select "Delegated permissions"
- Add the following permissions:
Calendars.ReadWrite
Tasks.ReadWrite
User.Read
offline_access
- Click "Add permissions"
- Click "Grant admin consent" (if you're an admin)
-
Create Client Secret:
- Go to "Certificates & secrets"
- Click "New client secret"
- Add a description and choose expiry
- Click "Add"
- Copy the generated secret value immediately (you won't be able to see it again)
-
Configure Credentials:
- Go to FluidCalendar Settings > System
- Enter your Outlook credentials in the Outlook Calendar Integration section:
- Client ID (Application ID)
- Client Secret
- Tenant ID (Optional - leave empty to allow any Microsoft account)
- Or set environment variables as fallback:
AZURE_AD_CLIENT_ID="your-client-id" AZURE_AD_CLIENT_SECRET="your-client-secret" AZURE_AD_TENANT_ID="your-tenant-id-or-common"
Note: For production deployment:
- Update the redirect URIs to include your production domain
- Ensure all required permissions are granted
- Consider implementing additional security measures based on your needs
- Install Docker on your machine
- Run the following commands:
# Clone the repository git clone https://github.com/yourusername/fluid-calendar.git cd fluid-calendar # Start the application docker compose up # View logs (optional) docker compose logs -f
- Visit http://localhost:3000
That's it! The application will be running with a PostgreSQL database automatically configured.
If you want to develop FluidCalendar:
-
Clone the repository:
git clone https://github.com/yourusername/fluid-calendar.git cd fluid-calendar
-
Start the development environment:
docker compose -f docker-compose.dev.yml up -d
-
Visit http://localhost:3000
The development environment includes:
- Hot reloading
- PostgreSQL database
- Development tools
- Exposed database port (5432) for direct access
# View logs
docker compose logs -f
# Stop the application
docker compose down
# Rebuild and restart
docker compose up -d --build
# Reset database (caution: deletes all data)
docker compose down -v
docker compose up -d
# Access database CLI
docker compose exec db psql -U fluid -d fluid_calendar
- Copy
.env.example
to.env
:
cp .env.example .env
- Configure the following environment variables:
DATABASE_URL
: Your database connection stringNEXTAUTH_URL
: Your application URLNEXTAUTH_SECRET
: Random string for session encryption
- Optional environment variables (can be configured in System Settings instead):
GOOGLE_CLIENT_ID
: From Google Cloud ConsoleGOOGLE_CLIENT_SECRET
: From Google Cloud ConsoleLOG_LEVEL
: Logging level (none/debug)
Note: Google credentials and logging settings can be managed through the UI in Settings > System. Environment variables will be used as fallback if system settings are not configured.
First, run the development server:
npm run dev
# or
yarn dev
# or
pnpm dev
# or
bun dev
Open http://localhost:3000 with your browser to see the result.
Don't want to handle the migration yourself? We offer a complete done-for-you service that includes:
- Managed OpenProject hosting
- Complete Jira migration
- 24/7 technical support
- Secure and reliable infrastructure
Visit portfolio.elitecoders.co/openproject to learn more about our managed OpenProject migration service.
This project was built by EliteCoders, a software development company specializing in custom software solutions. If you need help with:
- Custom software development
- System integration
- Migration tools and services
- Technical consulting
Please reach out to us at hello@elitecoders.co or visit our website at www.elitecoders.co.
Contributions are welcome! Please feel free to submit a Pull Request. For major changes, please open an issue first to discuss what you would like to change.
Please make sure to update tests as appropriate.