Welcome to EventFlow, your ultimate PostgreSQL-powered solution for creating and managing dynamic calendars with ease. π π
Stay organized, collaborate seamlessly, and never miss an event again!
π Dynamic Calendars: Create, customize, and organize calendars effortlessly. π Group Collaboration: Form groups, invite members, and coordinate events seamlessly. π Event Management: Schedule one-time, recurring, and spanning events with precision. π Flexible Time Handling: Handle events across different time zones and durations. π Powerful Recurrence: Enjoy diverse recurrence patterns - weekly, monthly, annual, and more. π Invitation System: Invite, accept, and decline event invitations with ease.
To start harnessing the power of EventFlow, follow these steps:
- Clone this repository:
git clone https://github.com/your-username/EventFlow-PostgreSQL-Powerhouse-for-Dynamic-Calendars.git
- Set up your PostgreSQL database using the provided schema.
- Customize the UI and frontend components to match your application's branding.
- Collaborate, schedule, and enjoy a seamless calendar experience!
-- Create a new calendar
INSERT INTO Calendars (name, colour, default_access, owner)
VALUES ('My Awesome Calendar', '#3498db', 'read-write', 1);
-- Schedule an event
INSERT INTO Events (start_time, end_time, title, location, Created_By, Part_Of, visibility)
VALUES ('15:00', '16:30', 'Team Meeting', 'Conference Room A', 1, 1, 'public');