├── .github ├── ISSUE_TEMPLATE │ ├── bug_report.yaml │ ├── feature-request.yaml │ ├── linear-triage--feat error.md │ ├── linear-triage--ui.md │ ├── linear-triage-feat.md │ └── linear-triage-ui error.md ├── pull_request_template.md └── workflows │ ├── issue-notifier.yml │ ├── pr-check.yml │ ├── pr-notifier.yml │ ├── preview-branch-update.yml │ └── validate-pr.yml ├── .gitignore ├── .vs └── slnx.sqlite ├── .vscode └── settings.json ├── CODE_OF_CONDUCT.md ├── Dockerfile ├── LICENSE ├── README.md ├── SECURITY.md ├── VOICE-AI-GUIDE.md ├── amplify.yml ├── apps ├── backend │ ├── .env.example │ ├── .eslintrc.json │ ├── .gitignore │ ├── Dockerfile │ ├── Dockerfile.railway │ ├── LICENSE │ ├── index.js │ ├── package.json │ └── src │ │ ├── ai-assistant-README.md │ │ ├── controllers │ │ ├── ai │ │ │ ├── enhanced-ai.controller.js │ │ │ ├── enhanced-intelligent-ai.controller.js │ │ │ ├── intelligent-ai.controller.js │ │ │ └── voice.controller.js │ │ ├── core │ │ │ ├── auth.controller.js │ │ │ └── user.controller.js │ │ ├── integration │ │ │ ├── calendar.controller.js │ │ │ ├── email.controller.js │ │ │ ├── github.controller.js │ │ │ ├── linear.controller.js │ │ │ ├── message.controller.js │ │ │ ├── notion.controller.js │ │ │ └── x.controller.js │ │ ├── lib │ │ │ ├── array.controller.js │ │ │ ├── block.controller.js │ │ │ ├── feedback.controller.js │ │ │ ├── fileAsset.controller.js │ │ │ ├── journal.controller.js │ │ │ ├── label.controller.js │ │ │ ├── linkPreview.controller.js │ │ │ ├── object.controller.js │ │ │ ├── source.controller.js │ │ │ └── type.controller.js │ │ └── page │ │ │ └── meeting.controller.js │ │ ├── index.js │ │ ├── jobs │ │ ├── cycle.job.js │ │ ├── init.job.js │ │ ├── linear.job.js │ │ ├── notion.job.js │ │ └── x.job.js │ │ ├── loaders │ │ ├── bullmq.loader.js │ │ ├── db.loader.js │ │ ├── environment.loader.js │ │ ├── google.loader.js │ │ ├── logsnag.loader.js │ │ ├── redis.loader.js │ │ ├── s3.loader.js │ │ └── websocket.loader.js │ │ ├── middlewares │ │ └── jwt.middleware.js │ │ ├── models │ │ ├── core │ │ │ ├── black-list.model.js │ │ │ └── user.model.js │ │ ├── lib │ │ │ ├── array.model.js │ │ │ ├── asset.model.js │ │ │ ├── block.model.js │ │ │ ├── journal.model.js │ │ │ ├── label.model.js │ │ │ ├── object.model.js │ │ │ ├── source.model.js │ │ │ └── type.model.js │ │ └── page │ │ │ └── meetings.model.js │ │ ├── payloads │ │ ├── core │ │ │ └── user.payload.js │ │ └── lib │ │ │ └── journal.payload.js │ │ ├── prompts │ │ ├── enhanced-system.prompt.js │ │ └── system.prompt.js │ │ ├── routers │ │ ├── ai │ │ │ ├── enhanced-ai.route.js │ │ │ ├── enhanced-intelligent-ai.route.js │ │ │ └── intelligent-ai.route.js │ │ ├── core │ │ │ ├── auth.route.js │ │ │ └── user.route.js │ │ ├── index.js │ │ ├── integration │ │ │ ├── calendar.route.js │ │ │ ├── email.route.js │ │ │ ├── github.route.js │ │ │ ├── linear.route.js │ │ │ ├── notion.route.js │ │ │ └── x.route.js │ │ ├── lib │ │ │ ├── array.route.js │ │ │ ├── common.route.js │ │ │ └── type.route.js │ │ └── voice.router.js │ │ ├── services │ │ ├── ai │ │ │ ├── advanced-object-manager.service.js │ │ │ ├── calendar-integration.service.js │ │ │ ├── chain-of-thought.service.js │ │ │ ├── context-manager.service.js │ │ │ ├── context-manager.test.js │ │ │ ├── enhanced-error-handler.service.js │ │ │ ├── enhanced-error-handler.test.js │ │ │ ├── enhanced-intent-understanding.service.js │ │ │ ├── integration-error-recovery.service.js │ │ │ ├── integration-error-recovery.test.js │ │ │ ├── smart-update.service.js │ │ │ ├── smart-update.test.js │ │ │ ├── update-parameter-extractor.service.js │ │ │ ├── user-learning.service.js │ │ │ ├── voice-recognition.service.js │ │ │ └── voice-recognition.test.js │ │ ├── core │ │ │ └── user.service.js │ │ ├── integration │ │ │ ├── calendar.service.js │ │ │ ├── email.service.js │ │ │ ├── github.service.js │ │ │ ├── linear.service.js │ │ │ ├── notion.service.js │ │ │ └── x.service.js │ │ ├── lib │ │ │ ├── array.service.js │ │ │ ├── block.service.js │ │ │ ├── feedback.service.js │ │ │ ├── fileAsset.controller.js │ │ │ ├── journal.service.js │ │ │ ├── label.service.js │ │ │ ├── linkPreview.service.js │ │ │ ├── object.service.js │ │ │ ├── source.service.js │ │ │ └── type.service.js │ │ ├── page │ │ │ └── meeting.service.js │ │ └── websocket │ │ │ └── voice-websocket.service.js │ │ └── utils │ │ ├── date-utils.js │ │ ├── helper.service.js │ │ ├── jwt.service.js │ │ ├── query.service.js │ │ └── s3.service.js ├── ios │ ├── .github │ │ └── workflows │ │ │ └── ios-build.yml │ ├── March.xcodeproj │ │ └── project.pbxproj │ ├── March │ │ ├── ContentView.swift │ │ ├── Info.plist │ │ ├── MarchApp.swift │ │ ├── ViewModels │ │ │ └── InboxViewModel.swift │ │ └── Views │ │ │ ├── ContentView.swift │ │ │ ├── InboxView.swift │ │ │ ├── LoginView.swift │ │ │ └── QuickAddView.swift │ ├── NO-XCODE-GUIDE.md │ ├── Package.swift │ ├── README.md │ ├── ShareExtension │ │ └── ShareViewController.swift │ ├── Shared │ │ ├── APIClient.swift │ │ ├── AuthManager.swift │ │ └── Models.swift │ ├── TESTFLIGHT-GUIDE.md │ ├── TESTING.md │ ├── Tests │ │ └── MarchCoreTests.swift │ ├── package.json │ ├── project.pbxproj │ ├── scripts │ │ └── build-testflight.sh │ └── xcode-install-guide.md ├── landing │ ├── .gitignore │ ├── README.md │ ├── next.config.js │ ├── package.json │ ├── postcss.config.js │ ├── public │ │ ├── _.svg │ │ ├── favicon.ico │ │ ├── index.html │ │ └── logo.png │ ├── run.sh │ ├── src │ │ ├── app │ │ │ ├── layout.tsx │ │ │ └── page.tsx │ │ ├── components │ │ │ ├── LanguageContext.tsx │ │ │ ├── LanguageSelect.tsx │ │ │ ├── Navbar.tsx │ │ │ ├── footer.tsx │ │ │ ├── hero.tsx │ │ │ ├── page-content.tsx │ │ │ ├── section.tsx │ │ │ └── ui │ │ │ │ └── button.tsx │ │ ├── lib │ │ │ └── utils.ts │ │ └── styles │ │ │ └── globals.css │ ├── tailwind.config.js │ └── tsconfig.json └── web │ ├── .gitignore │ ├── README.md │ ├── components.json │ ├── eslint.config.mjs │ ├── next.config.ts │ ├── package.json │ ├── postcss.config.mjs │ ├── src │ ├── actions │ │ ├── calendar.ts │ │ ├── objects.ts │ │ ├── session.ts │ │ └── user.ts │ ├── app │ │ ├── (routes) │ │ │ ├── agenda │ │ │ │ └── page.tsx │ │ │ ├── agent │ │ │ │ └── page.tsx │ │ │ ├── ai-chat │ │ │ │ └── page.tsx │ │ │ ├── inbox │ │ │ │ └── page.tsx │ │ │ ├── layout.tsx │ │ │ └── objects │ │ │ │ └── page.tsx │ │ ├── api │ │ │ ├── auth │ │ │ │ ├── github │ │ │ │ │ └── route.ts │ │ │ │ ├── gmail │ │ │ │ │ └── route.ts │ │ │ │ ├── google-calendar │ │ │ │ │ └── route.ts │ │ │ │ ├── google │ │ │ │ │ └── route.ts │ │ │ │ ├── linear-url │ │ │ │ │ └── route.ts │ │ │ │ ├── linear │ │ │ │ │ └── route.ts │ │ │ │ └── x │ │ │ │ │ └── route.ts │ │ │ └── health │ │ │ │ └── route.ts │ │ ├── favicon.ico │ │ ├── github │ │ │ └── callback │ │ │ │ └── page.tsx │ │ ├── journal │ │ │ └── page.tsx │ │ ├── layout.tsx │ │ ├── page.tsx │ │ ├── providers.tsx │ │ ├── realtime-voice-demo │ │ │ └── page.tsx │ │ ├── signin │ │ │ └── page.tsx │ │ └── voice-demo │ │ │ └── page.tsx │ ├── components │ │ ├── EnhancedAIChat.jsx │ │ ├── VoiceDemo.tsx │ │ ├── VoiceEnabledAIChat.tsx │ │ ├── agent │ │ │ └── agent.tsx │ │ ├── assistant-ui │ │ │ ├── assistant-modal.tsx │ │ │ ├── markdown-text.tsx │ │ │ ├── thread.tsx │ │ │ └── tooltip-icon-button.tsx │ │ ├── blocks │ │ │ ├── block.tsx │ │ │ ├── calendar │ │ │ │ ├── calendar.tsx │ │ │ │ ├── event-content.tsx │ │ │ │ └── event-details.tsx │ │ │ ├── daily-notes │ │ │ │ └── daily-notes.tsx │ │ │ └── list │ │ │ │ ├── agenda-list-items.tsx │ │ │ │ ├── agenda-list.tsx │ │ │ │ ├── list-items.tsx │ │ │ │ ├── list.tsx │ │ │ │ └── sortable-item.tsx │ │ ├── dialogs │ │ │ ├── integration │ │ │ │ ├── integration-list.tsx │ │ │ │ ├── integration.tsx │ │ │ │ └── integrations-dialog.tsx │ │ │ └── search │ │ │ │ └── search-dialog.tsx │ │ ├── editor │ │ │ ├── editor-menu.tsx │ │ │ ├── editor.css │ │ │ ├── editor.tsx │ │ │ ├── extentions.ts │ │ │ ├── selectors │ │ │ │ ├── color-selector.tsx │ │ │ │ ├── link-selector.tsx │ │ │ │ ├── node-selector.tsx │ │ │ │ └── text-buttons.tsx │ │ │ └── slash-command.ts │ │ ├── error │ │ │ └── error-boundary.tsx │ │ ├── input │ │ │ └── input-box.tsx │ │ ├── journal │ │ │ ├── journal-entry.tsx │ │ │ └── journal-page.tsx │ │ ├── object │ │ │ ├── expanded-view.tsx │ │ │ └── title-textarea.tsx │ │ ├── provider │ │ │ ├── my-runtime-provider.tsx │ │ │ └── query-client-provider.tsx │ │ ├── sidebar │ │ │ └── app-sidebar.tsx │ │ ├── skeleton │ │ │ └── inbox-skeleton.tsx │ │ ├── test-toast.tsx │ │ ├── ui │ │ │ ├── avatar.tsx │ │ │ ├── badge.tsx │ │ │ ├── button.tsx │ │ │ ├── card.tsx │ │ │ ├── checkbox.tsx │ │ │ ├── command.tsx │ │ │ ├── dialog.tsx │ │ │ ├── dropdown-menu.tsx │ │ │ ├── form.tsx │ │ │ ├── icons.tsx │ │ │ ├── input.tsx │ │ │ ├── label.tsx │ │ │ ├── notification.tsx │ │ │ ├── popover.tsx │ │ │ ├── separator.tsx │ │ │ ├── sheet.tsx │ │ │ ├── sidebar.tsx │ │ │ ├── skeleton.tsx │ │ │ ├── sonner.tsx │ │ │ ├── spinner.tsx │ │ │ ├── textarea.tsx │ │ │ └── tooltip.tsx │ │ ├── voice │ │ │ ├── ContinuousVoiceChat.tsx │ │ │ ├── RealtimeVoiceChat.tsx │ │ │ ├── VoiceAssistant.tsx │ │ │ ├── VoiceFloatingButton.tsx │ │ │ ├── VoiceRecorder.tsx │ │ │ └── index.ts │ │ └── wrappers │ │ │ └── grid-wrapper.tsx │ ├── contexts │ │ ├── auth-context.tsx │ │ ├── block-context.tsx │ │ ├── calendar-context.tsx │ │ └── websocket-context.tsx │ ├── hooks │ │ ├── use-calendar-login.ts │ │ ├── use-events.ts │ │ ├── use-github-install.ts │ │ ├── use-github-login.ts │ │ ├── use-gmail-login.ts │ │ ├── use-google-login.ts │ │ ├── use-linear-login.ts │ │ ├── use-lock-scroll.ts │ │ ├── use-mobile.tsx │ │ ├── use-objects.ts │ │ ├── use-user.ts │ │ ├── use-x-login.ts │ │ └── useVoiceAssistant.ts │ ├── lib │ │ ├── api.ts │ │ ├── constants.ts │ │ ├── integrations.ts │ │ ├── mock-data.ts │ │ ├── token.ts │ │ └── utils.ts │ ├── middleware.ts │ ├── styles │ │ ├── calendar.css │ │ └── globals.css │ ├── types │ │ ├── auth.ts │ │ ├── blocks.ts │ │ ├── calendar.ts │ │ ├── objects.ts │ │ └── user.ts │ └── utils │ │ └── date-utils.ts │ ├── tailwind.config.ts │ └── tsconfig.json ├── bun.lockb ├── bunfig.toml ├── docker-compose.yml ├── package.json ├── turbo.json └── web-preview └── index.html /.github/ISSUE_TEMPLATE/bug_report.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/bug_report.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/feature-request.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/feature-request.yaml -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/linear-triage--feat error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/linear-triage--feat error.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/linear-triage--ui.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/linear-triage--ui.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/linear-triage-feat.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/linear-triage-feat.md -------------------------------------------------------------------------------- /.github/ISSUE_TEMPLATE/linear-triage-ui error.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/ISSUE_TEMPLATE/linear-triage-ui error.md -------------------------------------------------------------------------------- /.github/pull_request_template.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/pull_request_template.md -------------------------------------------------------------------------------- /.github/workflows/issue-notifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/workflows/issue-notifier.yml -------------------------------------------------------------------------------- /.github/workflows/pr-check.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/workflows/pr-check.yml -------------------------------------------------------------------------------- /.github/workflows/pr-notifier.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/workflows/pr-notifier.yml -------------------------------------------------------------------------------- /.github/workflows/preview-branch-update.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/workflows/preview-branch-update.yml -------------------------------------------------------------------------------- /.github/workflows/validate-pr.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.github/workflows/validate-pr.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.gitignore -------------------------------------------------------------------------------- /.vs/slnx.sqlite: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.vs/slnx.sqlite -------------------------------------------------------------------------------- /.vscode/settings.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/.vscode/settings.json -------------------------------------------------------------------------------- /CODE_OF_CONDUCT.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/CODE_OF_CONDUCT.md -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/README.md -------------------------------------------------------------------------------- /SECURITY.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/SECURITY.md -------------------------------------------------------------------------------- /VOICE-AI-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/VOICE-AI-GUIDE.md -------------------------------------------------------------------------------- /amplify.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/amplify.yml -------------------------------------------------------------------------------- /apps/backend/.env.example: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/.env.example -------------------------------------------------------------------------------- /apps/backend/.eslintrc.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/.eslintrc.json -------------------------------------------------------------------------------- /apps/backend/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/.gitignore -------------------------------------------------------------------------------- /apps/backend/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/Dockerfile -------------------------------------------------------------------------------- /apps/backend/Dockerfile.railway: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/Dockerfile.railway -------------------------------------------------------------------------------- /apps/backend/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/LICENSE -------------------------------------------------------------------------------- /apps/backend/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/index.js -------------------------------------------------------------------------------- /apps/backend/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/package.json -------------------------------------------------------------------------------- /apps/backend/src/ai-assistant-README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/ai-assistant-README.md -------------------------------------------------------------------------------- /apps/backend/src/controllers/ai/enhanced-ai.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/ai/enhanced-ai.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/ai/enhanced-intelligent-ai.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/ai/enhanced-intelligent-ai.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/ai/intelligent-ai.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/ai/intelligent-ai.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/ai/voice.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/ai/voice.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/core/auth.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/core/auth.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/core/user.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/core/user.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/calendar.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/calendar.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/email.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/email.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/github.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/github.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/linear.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/linear.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/message.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/message.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/notion.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/notion.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/integration/x.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/integration/x.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/array.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/array.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/block.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/block.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/feedback.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/feedback.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/fileAsset.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/fileAsset.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/journal.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/journal.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/label.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/label.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/linkPreview.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/linkPreview.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/object.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/object.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/source.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/source.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/lib/type.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/lib/type.controller.js -------------------------------------------------------------------------------- /apps/backend/src/controllers/page/meeting.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/controllers/page/meeting.controller.js -------------------------------------------------------------------------------- /apps/backend/src/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/index.js -------------------------------------------------------------------------------- /apps/backend/src/jobs/cycle.job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/jobs/cycle.job.js -------------------------------------------------------------------------------- /apps/backend/src/jobs/init.job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/jobs/init.job.js -------------------------------------------------------------------------------- /apps/backend/src/jobs/linear.job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/jobs/linear.job.js -------------------------------------------------------------------------------- /apps/backend/src/jobs/notion.job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/jobs/notion.job.js -------------------------------------------------------------------------------- /apps/backend/src/jobs/x.job.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/jobs/x.job.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/bullmq.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/bullmq.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/db.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/db.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/environment.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/environment.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/google.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/google.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/logsnag.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/logsnag.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/redis.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/redis.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/s3.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/s3.loader.js -------------------------------------------------------------------------------- /apps/backend/src/loaders/websocket.loader.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/loaders/websocket.loader.js -------------------------------------------------------------------------------- /apps/backend/src/middlewares/jwt.middleware.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/middlewares/jwt.middleware.js -------------------------------------------------------------------------------- /apps/backend/src/models/core/black-list.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/core/black-list.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/core/user.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/core/user.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/array.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/array.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/asset.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/asset.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/block.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/block.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/journal.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/journal.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/label.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/label.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/object.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/object.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/source.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/source.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/lib/type.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/lib/type.model.js -------------------------------------------------------------------------------- /apps/backend/src/models/page/meetings.model.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/models/page/meetings.model.js -------------------------------------------------------------------------------- /apps/backend/src/payloads/core/user.payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/payloads/core/user.payload.js -------------------------------------------------------------------------------- /apps/backend/src/payloads/lib/journal.payload.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/payloads/lib/journal.payload.js -------------------------------------------------------------------------------- /apps/backend/src/prompts/enhanced-system.prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/prompts/enhanced-system.prompt.js -------------------------------------------------------------------------------- /apps/backend/src/prompts/system.prompt.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/prompts/system.prompt.js -------------------------------------------------------------------------------- /apps/backend/src/routers/ai/enhanced-ai.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/ai/enhanced-ai.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/ai/enhanced-intelligent-ai.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/ai/enhanced-intelligent-ai.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/ai/intelligent-ai.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/ai/intelligent-ai.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/core/auth.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/core/auth.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/core/user.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/core/user.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/index.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/index.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/calendar.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/calendar.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/email.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/email.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/github.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/github.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/linear.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/linear.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/notion.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/notion.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/integration/x.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/integration/x.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/lib/array.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/lib/array.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/lib/common.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/lib/common.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/lib/type.route.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/lib/type.route.js -------------------------------------------------------------------------------- /apps/backend/src/routers/voice.router.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/routers/voice.router.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/advanced-object-manager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/advanced-object-manager.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/calendar-integration.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/calendar-integration.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/chain-of-thought.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/chain-of-thought.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/context-manager.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/context-manager.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/context-manager.test.js: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /apps/backend/src/services/ai/enhanced-error-handler.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/enhanced-error-handler.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/enhanced-error-handler.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/enhanced-error-handler.test.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/enhanced-intent-understanding.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/enhanced-intent-understanding.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/integration-error-recovery.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/integration-error-recovery.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/integration-error-recovery.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/integration-error-recovery.test.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/smart-update.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/smart-update.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/smart-update.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/smart-update.test.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/update-parameter-extractor.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/update-parameter-extractor.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/user-learning.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/user-learning.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/voice-recognition.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/voice-recognition.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/ai/voice-recognition.test.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/ai/voice-recognition.test.js -------------------------------------------------------------------------------- /apps/backend/src/services/core/user.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/core/user.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/calendar.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/calendar.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/email.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/email.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/github.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/github.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/linear.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/linear.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/notion.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/notion.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/integration/x.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/integration/x.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/array.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/array.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/block.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/block.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/feedback.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/feedback.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/fileAsset.controller.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/fileAsset.controller.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/journal.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/journal.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/label.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/label.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/linkPreview.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/linkPreview.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/object.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/object.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/source.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/source.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/lib/type.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/lib/type.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/page/meeting.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/page/meeting.service.js -------------------------------------------------------------------------------- /apps/backend/src/services/websocket/voice-websocket.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/services/websocket/voice-websocket.service.js -------------------------------------------------------------------------------- /apps/backend/src/utils/date-utils.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/utils/date-utils.js -------------------------------------------------------------------------------- /apps/backend/src/utils/helper.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/utils/helper.service.js -------------------------------------------------------------------------------- /apps/backend/src/utils/jwt.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/utils/jwt.service.js -------------------------------------------------------------------------------- /apps/backend/src/utils/query.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/utils/query.service.js -------------------------------------------------------------------------------- /apps/backend/src/utils/s3.service.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/backend/src/utils/s3.service.js -------------------------------------------------------------------------------- /apps/ios/.github/workflows/ios-build.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/.github/workflows/ios-build.yml -------------------------------------------------------------------------------- /apps/ios/March.xcodeproj/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March.xcodeproj/project.pbxproj -------------------------------------------------------------------------------- /apps/ios/March/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/ContentView.swift -------------------------------------------------------------------------------- /apps/ios/March/Info.plist: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/Info.plist -------------------------------------------------------------------------------- /apps/ios/March/MarchApp.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/MarchApp.swift -------------------------------------------------------------------------------- /apps/ios/March/ViewModels/InboxViewModel.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/ViewModels/InboxViewModel.swift -------------------------------------------------------------------------------- /apps/ios/March/Views/ContentView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/Views/ContentView.swift -------------------------------------------------------------------------------- /apps/ios/March/Views/InboxView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/Views/InboxView.swift -------------------------------------------------------------------------------- /apps/ios/March/Views/LoginView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/Views/LoginView.swift -------------------------------------------------------------------------------- /apps/ios/March/Views/QuickAddView.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/March/Views/QuickAddView.swift -------------------------------------------------------------------------------- /apps/ios/NO-XCODE-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/NO-XCODE-GUIDE.md -------------------------------------------------------------------------------- /apps/ios/Package.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/Package.swift -------------------------------------------------------------------------------- /apps/ios/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/README.md -------------------------------------------------------------------------------- /apps/ios/ShareExtension/ShareViewController.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/ShareExtension/ShareViewController.swift -------------------------------------------------------------------------------- /apps/ios/Shared/APIClient.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/Shared/APIClient.swift -------------------------------------------------------------------------------- /apps/ios/Shared/AuthManager.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/Shared/AuthManager.swift -------------------------------------------------------------------------------- /apps/ios/Shared/Models.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/Shared/Models.swift -------------------------------------------------------------------------------- /apps/ios/TESTFLIGHT-GUIDE.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/TESTFLIGHT-GUIDE.md -------------------------------------------------------------------------------- /apps/ios/TESTING.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/TESTING.md -------------------------------------------------------------------------------- /apps/ios/Tests/MarchCoreTests.swift: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/Tests/MarchCoreTests.swift -------------------------------------------------------------------------------- /apps/ios/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/package.json -------------------------------------------------------------------------------- /apps/ios/project.pbxproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/project.pbxproj -------------------------------------------------------------------------------- /apps/ios/scripts/build-testflight.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/scripts/build-testflight.sh -------------------------------------------------------------------------------- /apps/ios/xcode-install-guide.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/ios/xcode-install-guide.md -------------------------------------------------------------------------------- /apps/landing/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/.gitignore -------------------------------------------------------------------------------- /apps/landing/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/README.md -------------------------------------------------------------------------------- /apps/landing/next.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/next.config.js -------------------------------------------------------------------------------- /apps/landing/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/package.json -------------------------------------------------------------------------------- /apps/landing/postcss.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/postcss.config.js -------------------------------------------------------------------------------- /apps/landing/public/_.svg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/public/_.svg -------------------------------------------------------------------------------- /apps/landing/public/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/public/favicon.ico -------------------------------------------------------------------------------- /apps/landing/public/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/public/index.html -------------------------------------------------------------------------------- /apps/landing/public/logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/public/logo.png -------------------------------------------------------------------------------- /apps/landing/run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/run.sh -------------------------------------------------------------------------------- /apps/landing/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/landing/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/app/page.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/LanguageContext.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/LanguageContext.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/LanguageSelect.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/LanguageSelect.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/Navbar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/Navbar.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/footer.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/footer.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/hero.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/hero.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/page-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/page-content.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/section.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/section.tsx -------------------------------------------------------------------------------- /apps/landing/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/landing/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/landing/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/src/styles/globals.css -------------------------------------------------------------------------------- /apps/landing/tailwind.config.js: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/tailwind.config.js -------------------------------------------------------------------------------- /apps/landing/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/landing/tsconfig.json -------------------------------------------------------------------------------- /apps/web/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/.gitignore -------------------------------------------------------------------------------- /apps/web/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/README.md -------------------------------------------------------------------------------- /apps/web/components.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/components.json -------------------------------------------------------------------------------- /apps/web/eslint.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/eslint.config.mjs -------------------------------------------------------------------------------- /apps/web/next.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/next.config.ts -------------------------------------------------------------------------------- /apps/web/package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/package.json -------------------------------------------------------------------------------- /apps/web/postcss.config.mjs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/postcss.config.mjs -------------------------------------------------------------------------------- /apps/web/src/actions/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/actions/calendar.ts -------------------------------------------------------------------------------- /apps/web/src/actions/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/actions/objects.ts -------------------------------------------------------------------------------- /apps/web/src/actions/session.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/actions/session.ts -------------------------------------------------------------------------------- /apps/web/src/actions/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/actions/user.ts -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/agenda/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/agenda/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/agent/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/agent/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/ai-chat/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/ai-chat/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/inbox/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/inbox/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/(routes)/objects/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/(routes)/objects/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/github/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/github/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/gmail/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/gmail/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/google-calendar/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/google-calendar/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/google/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/google/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/linear-url/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/linear-url/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/linear/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/linear/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/auth/x/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/auth/x/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/api/health/route.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/api/health/route.ts -------------------------------------------------------------------------------- /apps/web/src/app/favicon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/favicon.ico -------------------------------------------------------------------------------- /apps/web/src/app/github/callback/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/github/callback/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/journal/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/journal/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/layout.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/layout.tsx -------------------------------------------------------------------------------- /apps/web/src/app/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/providers.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/providers.tsx -------------------------------------------------------------------------------- /apps/web/src/app/realtime-voice-demo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/realtime-voice-demo/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/signin/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/signin/page.tsx -------------------------------------------------------------------------------- /apps/web/src/app/voice-demo/page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/app/voice-demo/page.tsx -------------------------------------------------------------------------------- /apps/web/src/components/EnhancedAIChat.jsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/EnhancedAIChat.jsx -------------------------------------------------------------------------------- /apps/web/src/components/VoiceDemo.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/VoiceDemo.tsx -------------------------------------------------------------------------------- /apps/web/src/components/VoiceEnabledAIChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/VoiceEnabledAIChat.tsx -------------------------------------------------------------------------------- /apps/web/src/components/agent/agent.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/agent/agent.tsx -------------------------------------------------------------------------------- /apps/web/src/components/assistant-ui/assistant-modal.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/assistant-ui/assistant-modal.tsx -------------------------------------------------------------------------------- /apps/web/src/components/assistant-ui/markdown-text.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/assistant-ui/markdown-text.tsx -------------------------------------------------------------------------------- /apps/web/src/components/assistant-ui/thread.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/assistant-ui/thread.tsx -------------------------------------------------------------------------------- /apps/web/src/components/assistant-ui/tooltip-icon-button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/assistant-ui/tooltip-icon-button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/block.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/block.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/calendar/calendar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/calendar/calendar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/calendar/event-content.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/calendar/event-content.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/calendar/event-details.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/calendar/event-details.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/daily-notes/daily-notes.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/daily-notes/daily-notes.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/list/agenda-list-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/list/agenda-list-items.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/list/agenda-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/list/agenda-list.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/list/list-items.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/list/list-items.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/list/list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/list/list.tsx -------------------------------------------------------------------------------- /apps/web/src/components/blocks/list/sortable-item.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/blocks/list/sortable-item.tsx -------------------------------------------------------------------------------- /apps/web/src/components/dialogs/integration/integration-list.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/dialogs/integration/integration-list.tsx -------------------------------------------------------------------------------- /apps/web/src/components/dialogs/integration/integration.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/dialogs/integration/integration.tsx -------------------------------------------------------------------------------- /apps/web/src/components/dialogs/integration/integrations-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/dialogs/integration/integrations-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/dialogs/search/search-dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/dialogs/search/search-dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/editor-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/editor-menu.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/editor.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/editor.css -------------------------------------------------------------------------------- /apps/web/src/components/editor/editor.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/editor.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/extentions.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/extentions.ts -------------------------------------------------------------------------------- /apps/web/src/components/editor/selectors/color-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/selectors/color-selector.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/selectors/link-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/selectors/link-selector.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/selectors/node-selector.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/selectors/node-selector.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/selectors/text-buttons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/selectors/text-buttons.tsx -------------------------------------------------------------------------------- /apps/web/src/components/editor/slash-command.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/editor/slash-command.ts -------------------------------------------------------------------------------- /apps/web/src/components/error/error-boundary.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/error/error-boundary.tsx -------------------------------------------------------------------------------- /apps/web/src/components/input/input-box.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/input/input-box.tsx -------------------------------------------------------------------------------- /apps/web/src/components/journal/journal-entry.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/journal/journal-entry.tsx -------------------------------------------------------------------------------- /apps/web/src/components/journal/journal-page.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/journal/journal-page.tsx -------------------------------------------------------------------------------- /apps/web/src/components/object/expanded-view.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/object/expanded-view.tsx -------------------------------------------------------------------------------- /apps/web/src/components/object/title-textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/object/title-textarea.tsx -------------------------------------------------------------------------------- /apps/web/src/components/provider/my-runtime-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/provider/my-runtime-provider.tsx -------------------------------------------------------------------------------- /apps/web/src/components/provider/query-client-provider.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/provider/query-client-provider.tsx -------------------------------------------------------------------------------- /apps/web/src/components/sidebar/app-sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/sidebar/app-sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/skeleton/inbox-skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/skeleton/inbox-skeleton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/test-toast.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/test-toast.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/avatar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/avatar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/badge.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/badge.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/button.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/button.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/card.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/card.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/checkbox.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/checkbox.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/command.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/command.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dialog.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/dialog.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/dropdown-menu.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/dropdown-menu.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/form.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/form.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/icons.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/icons.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/input.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/input.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/label.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/label.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/notification.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/notification.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/popover.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/popover.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/separator.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/separator.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sheet.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/sheet.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sidebar.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/sidebar.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/skeleton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/skeleton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/sonner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/sonner.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/spinner.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/spinner.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/textarea.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/textarea.tsx -------------------------------------------------------------------------------- /apps/web/src/components/ui/tooltip.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/ui/tooltip.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/ContinuousVoiceChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/ContinuousVoiceChat.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/RealtimeVoiceChat.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/RealtimeVoiceChat.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/VoiceAssistant.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/VoiceAssistant.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/VoiceFloatingButton.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/VoiceFloatingButton.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/VoiceRecorder.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/VoiceRecorder.tsx -------------------------------------------------------------------------------- /apps/web/src/components/voice/index.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/voice/index.ts -------------------------------------------------------------------------------- /apps/web/src/components/wrappers/grid-wrapper.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/components/wrappers/grid-wrapper.tsx -------------------------------------------------------------------------------- /apps/web/src/contexts/auth-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/contexts/auth-context.tsx -------------------------------------------------------------------------------- /apps/web/src/contexts/block-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/contexts/block-context.tsx -------------------------------------------------------------------------------- /apps/web/src/contexts/calendar-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/contexts/calendar-context.tsx -------------------------------------------------------------------------------- /apps/web/src/contexts/websocket-context.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/contexts/websocket-context.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-calendar-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-calendar-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-events.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-events.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-github-install.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-github-install.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-github-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-github-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-gmail-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-gmail-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-google-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-google-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-linear-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-linear-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-lock-scroll.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-lock-scroll.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-mobile.tsx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-mobile.tsx -------------------------------------------------------------------------------- /apps/web/src/hooks/use-objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-objects.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-user.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/use-x-login.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/use-x-login.ts -------------------------------------------------------------------------------- /apps/web/src/hooks/useVoiceAssistant.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/hooks/useVoiceAssistant.ts -------------------------------------------------------------------------------- /apps/web/src/lib/api.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/api.ts -------------------------------------------------------------------------------- /apps/web/src/lib/constants.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/constants.ts -------------------------------------------------------------------------------- /apps/web/src/lib/integrations.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/integrations.ts -------------------------------------------------------------------------------- /apps/web/src/lib/mock-data.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/mock-data.ts -------------------------------------------------------------------------------- /apps/web/src/lib/token.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/token.ts -------------------------------------------------------------------------------- /apps/web/src/lib/utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/lib/utils.ts -------------------------------------------------------------------------------- /apps/web/src/middleware.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/middleware.ts -------------------------------------------------------------------------------- /apps/web/src/styles/calendar.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/styles/calendar.css -------------------------------------------------------------------------------- /apps/web/src/styles/globals.css: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/styles/globals.css -------------------------------------------------------------------------------- /apps/web/src/types/auth.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/types/auth.ts -------------------------------------------------------------------------------- /apps/web/src/types/blocks.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/types/blocks.ts -------------------------------------------------------------------------------- /apps/web/src/types/calendar.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/types/calendar.ts -------------------------------------------------------------------------------- /apps/web/src/types/objects.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/types/objects.ts -------------------------------------------------------------------------------- /apps/web/src/types/user.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/types/user.ts -------------------------------------------------------------------------------- /apps/web/src/utils/date-utils.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/src/utils/date-utils.ts -------------------------------------------------------------------------------- /apps/web/tailwind.config.ts: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/tailwind.config.ts -------------------------------------------------------------------------------- /apps/web/tsconfig.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/apps/web/tsconfig.json -------------------------------------------------------------------------------- /bun.lockb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/bun.lockb -------------------------------------------------------------------------------- /bunfig.toml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/bunfig.toml -------------------------------------------------------------------------------- /docker-compose.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/docker-compose.yml -------------------------------------------------------------------------------- /package.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/package.json -------------------------------------------------------------------------------- /turbo.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/turbo.json -------------------------------------------------------------------------------- /web-preview/index.html: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/martian-st/march/HEAD/web-preview/index.html --------------------------------------------------------------------------------