mirror of
https://github.com/supabase/supabase.git
synced 2026-06-14 23:25:16 +08:00
* lw13:d4 * www queues page (#30907) * new products menu * set up cron page * set up cron page * placeholder sections * set up queues page * update meta * update Supabase Queues landing page content * Updated the text to exclude queue creation/management from the API management section * queues www page --------- Co-authored-by: Wen Bo Xie <wenbo.xie3@gmail.com> Co-authored-by: Greg Papas <gregpapas@Gregs-MacBook-Pro.local> * feat: add queue module (#30853) * feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations docs homepage layout feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations docs homepage layout feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations feat: postgres integrations Create a new global navigation and homepage menu section for the Postgres Integrations category. reorg: move cron docs into postgres integrations docs homepage layout * fix: add pg_cron back to extensions sidebar * update Supabase Cron docs * feat: add queues module feat: add queues module * remove staging url from screenshots * remove outdated cron files * typo * queues description update --------- Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com> Co-authored-by: Wen Bo Xie <wenbo.xie3@gmail.com> Co-authored-by: Oliver Rice <github@oliverrice.com> * visibility timeout to window * queues landing page sql example * capitalize Dashboard * cron blog post citus data callout update * added draft of queues feature * updated features bulleting * pluralize queues * fix Queues features page * Inital bp * queues docs updates * format queues docs * queues blog post updates * edits * Update the images for role in the docs quickstart for queues. * updated images * update images * update more images * Update 2024-12-05-supabase-queues.mdx * fix breaks * punchier title * better ul * clean up * Retake screenshots * grammar * whitelines * video + images * update docs * blog updates * blog update * api snippet * api snippet fix * queues features yt video * api snippet fix * update docs * blog update * api snippet fix and vale * format * vale off * vale off * blog update --------- Co-authored-by: Francesco Sansalvadore <f.sansalvadore@gmail.com> Co-authored-by: Greg Papas <gregpapas@Gregs-MacBook-Pro.local> Co-authored-by: Charis <26616127+charislam@users.noreply.github.com> Co-authored-by: Oliver Rice <github@oliverrice.com> Co-authored-by: Terry Sutton <saltcod@gmail.com> Co-authored-by: Copple <10214025+kiwicopple@users.noreply.github.com> Co-authored-by: Ivan Vasilov <vasilov.ivan@gmail.com> Co-authored-by: Jonathan Summers-Muir <MildTomato@users.noreply.github.com>
46 lines
1.3 KiB
TypeScript
46 lines
1.3 KiB
TypeScript
import {
|
|
PRODUCT_MODULES_NAMES,
|
|
PRODUCT_MODULES,
|
|
PRODUCT_MODULES_SHORTNAMES,
|
|
} from 'shared-data/products'
|
|
import { ProductType } from './MainProducts'
|
|
|
|
const ProductModules: ProductType = {
|
|
[PRODUCT_MODULES_SHORTNAMES.VECTOR]: {
|
|
name: PRODUCT_MODULES_NAMES.VECTOR,
|
|
icon: PRODUCT_MODULES.vector.icon[24],
|
|
description: (
|
|
<>
|
|
Integrate your favorite ML-models to{' '}
|
|
<strong>store, index and search vector embeddings</strong>.
|
|
</>
|
|
),
|
|
description_short: 'AI toolkit to manage embeddings',
|
|
label: '',
|
|
url: '/modules/vector',
|
|
},
|
|
[PRODUCT_MODULES_SHORTNAMES.CRON]: {
|
|
name: PRODUCT_MODULES_NAMES.CRON,
|
|
icon: PRODUCT_MODULES['cron'].icon[24],
|
|
description: <>Schedule and manage recurring Jobs.</>,
|
|
description_short: 'Schedule and manage recurring Jobs',
|
|
label: '',
|
|
url: '/modules/cron',
|
|
},
|
|
[PRODUCT_MODULES_SHORTNAMES.QUEUES]: {
|
|
name: PRODUCT_MODULES_NAMES.QUEUES,
|
|
icon: PRODUCT_MODULES.queues.icon[24],
|
|
description: (
|
|
<>
|
|
Native Postgres queuing solution for dedicated message queues with the simplicity of SQL and{' '}
|
|
zero additional infrastructure.
|
|
</>
|
|
),
|
|
description_short: 'Durable Message Queues with guaranteed delivery',
|
|
label: '',
|
|
url: '/modules/queues',
|
|
},
|
|
}
|
|
|
|
export default ProductModules
|