diff options
| author | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
|---|---|---|
| committer | Mahesh Sanikommmu <[email protected]> | 2025-08-16 18:50:10 -0700 |
| commit | 39003aff23d64ff1d96074d71521f6023c9bec01 (patch) | |
| tree | 3f870c04b3dce315bba1b21aa2da158494e71774 /apps/docs | |
| parent | Merge pull request #355 from supermemoryai/archive (diff) | |
| download | supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.tar.xz supermemory-39003aff23d64ff1d96074d71521f6023c9bec01.zip | |
New Version of Supermemory Consumer App
Diffstat (limited to 'apps/docs')
28 files changed, 0 insertions, 1353 deletions
diff --git a/apps/docs/README.md b/apps/docs/README.md deleted file mode 100644 index 4cbe0750..00000000 --- a/apps/docs/README.md +++ /dev/null @@ -1,32 +0,0 @@ -# Mintlify Starter Kit - -Click on `Use this template` to copy the Mintlify starter kit. The starter kit contains examples including - -- Guide pages -- Navigation -- Customizations -- API Reference pages -- Use of popular components - -### Development - -Install the [Mintlify CLI](https://www.npmjs.com/package/mintlify) to preview the documentation changes locally. To install, use the following command - -``` -npm i -g mintlify -``` - -Run the following command at the root of your documentation (where mint.json is) - -``` -mintlify dev -``` - -### Publishing Changes - -Install our Github App to auto propagate changes from your repo to your deployment. Changes will be deployed to production automatically after pushing to the default branch. Find the link to install on your dashboard. - -#### Troubleshooting - -- Mintlify dev isn't running - Run `mintlify install` it'll re-install dependencies. -- Page loads as a 404 - Make sure you are running in a folder with `mint.json` diff --git a/apps/docs/api-reference/endpoints/connect/connect-app.mdx b/apps/docs/api-reference/endpoints/connect/connect-app.mdx deleted file mode 100644 index 712c0739..00000000 --- a/apps/docs/api-reference/endpoints/connect/connect-app.mdx +++ /dev/null @@ -1,10 +0,0 @@ ---- -openapi: get /connect/{app} ---- - -You may connect supermemory to other apps. -when you send a GET request to the \/connect:APP?id= endpoint, you will get a redirectURL. This is a safe URL that your users can click and select the appropriate files with. Once this is done, supermemory will periodically re-fetch and make sure that the data is always fresh. - -As of right now, these apps are supported: -- Notion - diff --git a/apps/docs/api-reference/endpoints/connect/connection-information.mdx b/apps/docs/api-reference/endpoints/connect/connection-information.mdx deleted file mode 100644 index d13af160..00000000 --- a/apps/docs/api-reference/endpoints/connect/connection-information.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -openapi: get /connections/{connectionId} ---- - -Get the connection details using this endpoint.
\ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx b/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx deleted file mode 100644 index 57ba0ea4..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/delete-delete.mdx +++ /dev/null @@ -1,3 +0,0 @@ ---- -openapi: delete /delete/{id} ----
\ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx b/apps/docs/api-reference/endpoints/memory-management/post-add.mdx deleted file mode 100644 index dd03dbe4..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/post-add.mdx +++ /dev/null @@ -1,59 +0,0 @@ ---- -openapi: post /add ---- - -Add a new memory with content and metadata. - -Fields: - -`content`: string - -`id`: string - -`metadata`: Record - -The `content` can be of the following types: - -- note \/ Markdown - - - If it is a markdown, all the images inside `![]` image tags will automatically be parsed. - -- pdf - -- tweet - -- google_doc - -- notion_doc - -- webpage URL - - - Images and other content is also intelligently parsed in case of a webpage. - - -The metadata provided is a JSON object. - -for eg. - -``` json -{ - "classId": "21412", - "year": "fifth" -} - - ``` - -If you wish to do exact searches, please use strings. But if you want to search in a range (time, numbers, prices), you can use numbers too. - -``` json -{ - "price": 1250 -} - - ``` - -More about \[metadata filtering here\]([https://docs.supermemory.ai/essentials/metadata-filtering](https://docs.supermemory.ai/essentials/metadata-filtering)) - -The `id` is optional. If provided, supermemory will store the same ID as your internal database. This can help for retrieval purposes. - -If the `id` already exists, supermemory will update it instead.
\ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/memory-management/put-update.mdx b/apps/docs/api-reference/endpoints/memory-management/put-update.mdx deleted file mode 100644 index cd8b408c..00000000 --- a/apps/docs/api-reference/endpoints/memory-management/put-update.mdx +++ /dev/null @@ -1,7 +0,0 @@ ---- -openapi: put /update/{id} ---- - -Update an existing memory. -Please note that all existing metadata will be replaced with the new ones. -You can also use the \/add endpoint along with the ID specified.
\ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx b/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx deleted file mode 100644 index 8e088e35..00000000 --- a/apps/docs/api-reference/endpoints/search/get-fastsearch.mdx +++ /dev/null @@ -1,5 +0,0 @@ ---- -openapi: get /fastsearch ---- - -Fast, lossy search using quantized embeddings. This can be used in case your app has text completions, or when searching fast is absolutely necessary.
\ No newline at end of file diff --git a/apps/docs/api-reference/endpoints/search/post-search.mdx b/apps/docs/api-reference/endpoints/search/post-search.mdx deleted file mode 100644 index 72352e4a..00000000 --- a/apps/docs/api-reference/endpoints/search/post-search.mdx +++ /dev/null @@ -1,12 +0,0 @@ ---- -openapi: post /search ---- - -Search through documents with metadata filtering. - -Body: -`q`: Your search query - -`limit`: Number of documents you want to get - -`filters`: Filters can be applied as `AND, OR, negate, numeric` types. You can read more about it here - \[metadata filtering here\]([https://docs.supermemory.ai/essentials/metadata-filtering](https://docs.supermemory.ai/essentials/metadata-filtering)) diff --git a/apps/docs/api-reference/endpoints/settings.mdx b/apps/docs/api-reference/endpoints/settings.mdx deleted file mode 100644 index 89120be7..00000000 --- a/apps/docs/api-reference/endpoints/settings.mdx +++ /dev/null @@ -1,3 +0,0 @@ ---- -openapi: put /settings ----
\ No newline at end of file diff --git a/apps/docs/changelog/overview.mdx b/apps/docs/changelog/overview.mdx deleted file mode 100644 index d9cf59fe..00000000 --- a/apps/docs/changelog/overview.mdx +++ /dev/null @@ -1,12 +0,0 @@ ---- -title: "Product Updates" -description: "New updates and improvements" -mode: "center" ---- - -<Update label="2025-02-01" description="v0.1.1"> - - You can now search for memories in multiple spaces at once. - - All endpoints have been updated to `/v1` for better versioning - - Improved documentation and examples - - Interactive [API Playground](https://docs.supermemory.ai/api-reference) -</Update>
\ No newline at end of file diff --git a/apps/docs/essentials/metadata-filtering.mdx b/apps/docs/essentials/metadata-filtering.mdx deleted file mode 100644 index d2df77ea..00000000 --- a/apps/docs/essentials/metadata-filtering.mdx +++ /dev/null @@ -1,78 +0,0 @@ ---- -title: "Managing Multi-User Search Results" -description: "Learn how to handle search results for different users in Supermemory" -icon: "users" ---- - -When building multi-user applications with Supermemory, you'll often need to manage data for different users accessing the same account. - -You might also want filters, like memories from **_multiple users_**, or in a certain **_time range_**, or products within a certain price category. - -You can do all this filtering using Supermemory's api. - -Here's a quick example - -```json -{ - "AND": [ - { - "filterType": "numeric", - "key": "timestamp", - "value": "1742745777", - "negate": false, - "numericOperator": ">" - }, - { - "key": "group", - "value": "jira_users", - "negate": false - }, - { - "OR": [ - { - "key": "team_name", - "value": "engineering", - "negate": false - }, - { - "key": "org_name", - "value": "supermemory", - "negate": false - } - ] - } - ] -} -``` - -You can compose these conditions together to add filtering: - -- `AND` -- `OR` -- `numeric` (greater than / less than) - -Here's an example call: - -```bash -curl --location 'https://v2.api.supermemory.ai/search' \ ---header 'x-api-key: supermemory_RXPx' \ ---header 'Content-Type: application/json' \ ---data '{ - "q": "How to use teamcity to set up a project?", - "limit": 10, - "filters": { - "AND": [ - { - "key": "book", - "value": "maths", - "negate": false - }, - { - "key": "author", - "value": "r.d. sharma", - "negate": false - } - ] - } -}' -```
\ No newline at end of file diff --git a/apps/docs/essentials/pricing.mdx b/apps/docs/essentials/pricing.mdx deleted file mode 100644 index a2167460..00000000 --- a/apps/docs/essentials/pricing.mdx +++ /dev/null @@ -1,47 +0,0 @@ ---- -title: "Pricing" -description: "Our pricing plans" -icon: "dollar-sign" ---- - -### Free! - -Yes, everything is free & open source. -Supermemory is built by [me](https://dhravya.dev), a college student. My life situations make it very difficult and almost impossible to monetise the product. - -Any kind of sponsorships / support would mean a lot to me, and help me keep supermemory alive. - -You can sponsor on my Github sponsors page - https://github.com/sponsors/dhravya - -### How can I trust you? - -Making the product free makes it hard to trust. "How will you manage the infra?", "How will you keep the product running?" are very valid questions. - -I've got you covered. - -Supermemory has the support of [Cloudflare startups program](https://www.cloudflare.com/forstartups/), [Google Cloud startup program](https://cloud.google.com/startups) and grants by [Vercel](https://vercel.com) and other amazing companies. - -We're fully committed to keeping the product running, and happy to sign any agreements you'd like. - -### Ask - -Please email me at [email protected] if you're interested in: - -- Sponsoring the product -- Funding the product -- Signing a letter of intent for potential funding rounds -- Partnering with us - -### Self hosting guidelines - -As of right now, Supermemory is licensed under the [Creative Commons Attribution-NonCommercial-ShareAlike 4.0 International License](https://github.com/supermemoryai/supermemory/blob/main/LICENSE) - -This means, - -- You can use the code for personal projects, given appropriate attribution. -- For non-commercial use, the code must be open source. -- Please reach out to me if you want to use the code for commercial projects. - -If you're an enterprise, please reach out to me at [email protected]. - -You can still use the API as a hosted service. diff --git a/apps/docs/favicon.png b/apps/docs/favicon.png Binary files differdeleted file mode 100644 index fd3dd8d3..00000000 --- a/apps/docs/favicon.png +++ /dev/null diff --git a/apps/docs/image.png b/apps/docs/image.png Binary files differdeleted file mode 100644 index a99caa14..00000000 --- a/apps/docs/image.png +++ /dev/null diff --git a/apps/docs/images/checks-passed.png b/apps/docs/images/checks-passed.png Binary files differdeleted file mode 100644 index 3303c773..00000000 --- a/apps/docs/images/checks-passed.png +++ /dev/null diff --git a/apps/docs/images/hero-dark.svg b/apps/docs/images/hero-dark.svg deleted file mode 100644 index b2c2bcee..00000000 --- a/apps/docs/images/hero-dark.svg +++ /dev/null @@ -1,32 +0,0 @@ -<svg width="2344" height="969" viewBox="0 0 2344 969" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_2392_147)"> -<rect width="2344" height="969" rx="100" fill="#0F1114"/> -<g opacity="0.4" filter="url(#filter0_f_2392_147)"> -<rect x="-2772.03" y="1936.79" width="7287.1" height="929.709" transform="rotate(-30 -2772.03 1936.79)" fill="#369DFD"/> -</g> -<g filter="url(#filter1_d_2392_147)"> -<path d="M854.654 430.165L832.896 432.517C832.678 430.295 832.003 428.226 830.87 426.31C829.738 424.393 828.039 422.868 825.774 421.736C823.552 420.56 820.677 419.972 817.149 419.972C812.008 419.972 807.5 421.126 803.623 423.435C799.746 425.743 797.546 428.705 797.024 432.321C796.544 435.022 797.198 437.222 798.984 438.92C800.77 440.619 804.08 442.057 808.916 443.233L825.512 446.892C834.66 448.939 841.238 452.25 845.245 456.824C849.296 461.398 850.712 467.387 849.492 474.793C848.447 480.978 845.746 486.423 841.39 491.128C837.034 495.789 831.458 499.426 824.663 502.04C817.911 504.653 810.418 505.96 802.186 505.96C789.684 505.96 780.057 503.368 773.305 498.185C766.597 492.957 763.264 485.77 763.308 476.622L786.569 474.401C786.83 478.931 788.42 482.35 791.339 484.659C794.258 486.924 798.309 488.079 803.492 488.122C809.329 488.166 814.252 486.946 818.259 484.463C822.311 481.937 824.597 478.866 825.12 475.25C825.556 472.549 824.881 470.349 823.095 468.651C821.352 466.952 818.238 465.601 813.751 464.599L797.285 461.006C787.963 458.958 781.32 455.495 777.356 450.616C773.436 445.694 772.107 439.487 773.37 431.994C774.416 425.896 776.964 420.647 781.015 416.247C785.11 411.804 790.359 408.384 796.762 405.989C803.166 403.549 810.331 402.33 818.259 402.33C830.195 402.33 839.19 404.834 845.245 409.844C851.3 414.853 854.436 421.627 854.654 430.165ZM931.376 461.79L941.112 403.636H964.765L948.038 504H925.104L928.109 486.162H927.064C923.927 491.781 919.441 496.377 913.604 499.949C907.81 503.521 901.145 505.307 893.609 505.307C887.032 505.307 881.478 503.848 876.947 500.929C872.417 497.967 869.194 493.676 867.277 488.057C865.404 482.394 865.121 475.555 866.427 467.54L877.143 403.636H900.797L890.734 463.881C889.732 470.241 890.647 475.294 893.479 479.04C896.354 482.786 900.622 484.659 906.285 484.659C909.77 484.659 913.277 483.81 916.805 482.111C920.377 480.412 923.492 477.885 926.149 474.531C928.806 471.134 930.549 466.886 931.376 461.79ZM962.474 541.636L985.605 403.636H1008.87L1006.19 420.233H1007.56C1009.13 417.794 1011.24 415.202 1013.9 412.457C1016.6 409.67 1020.02 407.295 1024.16 405.335C1028.29 403.331 1033.33 402.33 1039.25 402.33C1046.96 402.33 1053.6 404.312 1059.18 408.276C1064.75 412.196 1068.74 418.011 1071.14 425.722C1073.58 433.388 1073.88 442.797 1072.05 453.949C1070.22 464.97 1066.85 474.335 1061.92 482.045C1057 489.756 1051.1 495.636 1044.22 499.688C1037.33 503.739 1029.95 505.764 1022.06 505.764C1016.31 505.764 1011.68 504.806 1008.15 502.889C1004.66 500.973 1002.03 498.664 1000.24 495.963C998.455 493.219 997.126 490.627 996.255 488.188H995.21L986.323 541.636H962.474ZM1000.44 453.818C999.392 460.309 999.37 465.993 1000.37 470.872C1001.42 475.751 1003.49 479.562 1006.58 482.307C1009.67 485.008 1013.72 486.358 1018.73 486.358C1023.96 486.358 1028.53 484.964 1032.45 482.176C1036.42 479.345 1039.71 475.49 1042.32 470.611C1044.98 465.688 1046.85 460.091 1047.94 453.818C1048.94 447.589 1048.94 442.057 1047.94 437.222C1046.94 432.386 1044.91 428.597 1041.86 425.852C1038.81 423.108 1034.68 421.736 1029.45 421.736C1024.35 421.736 1019.8 423.064 1015.79 425.722C1011.83 428.379 1008.54 432.103 1005.93 436.895C1003.31 441.687 1001.48 447.328 1000.44 453.818ZM1124.35 505.96C1114.29 505.96 1105.97 503.869 1099.39 499.688C1092.81 495.462 1088.2 489.494 1085.54 481.784C1082.93 474.03 1082.49 464.904 1084.23 454.406C1085.93 444.082 1089.39 435.022 1094.62 427.224C1099.85 419.384 1106.38 413.285 1114.22 408.929C1122.11 404.529 1130.82 402.33 1140.36 402.33C1146.55 402.33 1152.23 403.331 1157.41 405.335C1162.6 407.295 1166.98 410.345 1170.55 414.483C1174.12 418.621 1176.58 423.892 1177.93 430.295C1179.28 436.655 1179.22 444.235 1177.73 453.034L1176.62 460.287H1094.29L1096.84 444.344H1156.43C1157.22 439.813 1156.96 435.784 1155.65 432.256C1154.34 428.684 1152.16 425.874 1149.12 423.827C1146.07 421.779 1142.25 420.756 1137.68 420.756C1133.02 420.756 1128.66 421.954 1124.61 424.349C1120.61 426.702 1117.23 429.751 1114.48 433.497C1111.74 437.243 1110 441.186 1109.26 445.324L1106.58 460.614C1105.62 466.886 1105.84 472.005 1107.23 475.969C1108.63 479.933 1111.07 482.851 1114.55 484.724C1118.04 486.598 1122.43 487.534 1127.75 487.534C1131.23 487.534 1134.46 487.055 1137.42 486.097C1140.38 485.138 1143.02 483.701 1145.33 481.784C1147.68 479.824 1149.64 477.428 1151.21 474.597L1172.83 477.08C1170.44 482.917 1166.93 488.013 1162.31 492.369C1157.7 496.682 1152.16 500.036 1145.72 502.432C1139.31 504.784 1132.19 505.96 1124.35 505.96ZM1185.75 504L1202.48 403.636H1225.41L1222.6 420.364H1223.65C1226.39 414.57 1230.27 410.105 1235.28 406.969C1240.33 403.789 1245.73 402.199 1251.48 402.199C1252.83 402.199 1254.29 402.264 1255.86 402.395C1257.43 402.482 1258.78 402.634 1259.91 402.852L1256.25 424.611C1255.25 424.262 1253.68 423.957 1251.55 423.696C1249.46 423.391 1247.39 423.239 1245.34 423.239C1241.03 423.239 1237.02 424.175 1233.32 426.048C1229.66 427.878 1226.57 430.426 1224.04 433.693C1221.51 436.96 1219.88 440.728 1219.14 444.997L1209.4 504H1185.75ZM1255.27 504L1272 403.636H1294.67L1291.79 420.69H1293.04C1296.09 414.94 1300.29 410.454 1305.65 407.23C1311 403.963 1317.04 402.33 1323.75 402.33C1330.5 402.33 1335.94 403.985 1340.08 407.295C1344.26 410.562 1346.83 415.027 1347.79 420.69H1348.84C1351.97 415.071 1356.46 410.606 1362.3 407.295C1368.18 403.985 1374.78 402.33 1382.1 402.33C1391.24 402.33 1398.26 405.248 1403.14 411.085C1408.01 416.922 1409.52 425.438 1407.64 436.634L1396.41 504H1372.75L1383.47 440.293C1384.43 434.063 1383.47 429.511 1380.59 426.636C1377.76 423.718 1373.95 422.259 1369.16 422.259C1363.45 422.259 1358.7 424.023 1354.91 427.551C1351.17 431.08 1348.86 435.697 1347.99 441.403L1337.47 504H1314.27L1325.12 439.312C1325.9 434.129 1324.99 429.991 1322.37 426.898C1319.8 423.805 1316.01 422.259 1311 422.259C1307.61 422.259 1304.36 423.13 1301.27 424.872C1298.18 426.615 1295.54 429.054 1293.36 432.19C1291.23 435.283 1289.83 438.877 1289.18 442.972L1278.99 504H1255.27ZM1460.83 505.96C1450.76 505.96 1442.44 503.869 1435.87 499.688C1429.29 495.462 1424.67 489.494 1422.01 481.784C1419.4 474.03 1418.97 464.904 1420.71 454.406C1422.41 444.082 1425.87 435.022 1431.1 427.224C1436.32 419.384 1442.86 413.285 1450.7 408.929C1458.58 404.529 1467.3 402.33 1476.84 402.33C1483.02 402.33 1488.71 403.331 1493.89 405.335C1499.07 407.295 1503.45 410.345 1507.02 414.483C1510.6 418.621 1513.06 423.892 1514.41 430.295C1515.76 436.655 1515.69 444.235 1514.21 453.034L1513.1 460.287H1430.77L1433.32 444.344H1492.91C1493.69 439.813 1493.43 435.784 1492.13 432.256C1490.82 428.684 1488.64 425.874 1485.59 423.827C1482.54 421.779 1478.73 420.756 1474.16 420.756C1469.5 420.756 1465.14 421.954 1461.09 424.349C1457.08 426.702 1453.71 429.751 1450.96 433.497C1448.22 437.243 1446.47 441.186 1445.73 445.324L1443.05 460.614C1442.1 466.886 1442.31 472.005 1443.71 475.969C1445.1 479.933 1447.54 482.851 1451.03 484.724C1454.51 486.598 1458.91 487.534 1464.22 487.534C1467.71 487.534 1470.93 487.055 1473.9 486.097C1476.86 485.138 1479.49 483.701 1481.8 481.784C1484.15 479.824 1486.11 477.428 1487.68 474.597L1509.31 477.08C1506.91 482.917 1503.41 488.013 1498.79 492.369C1494.17 496.682 1488.64 500.036 1482.19 502.432C1475.79 504.784 1468.67 505.96 1460.83 505.96ZM1522.29 504L1539.02 403.636H1561.69L1558.82 420.69H1560.06C1563.11 414.94 1567.31 410.454 1572.67 407.23C1578.03 403.963 1584.06 402.33 1590.77 402.33C1597.52 402.33 1602.97 403.985 1607.1 407.295C1611.29 410.562 1613.86 415.027 1614.81 420.69H1615.86C1619 415.071 1623.48 410.606 1629.32 407.295C1635.2 403.985 1641.8 402.33 1649.12 402.33C1658.27 402.33 1665.28 405.248 1670.16 411.085C1675.04 416.922 1676.54 425.438 1674.67 436.634L1663.43 504H1639.77L1650.49 440.293C1651.45 434.063 1650.49 429.511 1647.62 426.636C1644.78 423.718 1640.97 422.259 1636.18 422.259C1630.47 422.259 1625.73 424.023 1621.94 427.551C1618.19 431.08 1615.88 435.697 1615.01 441.403L1604.49 504H1581.29L1592.14 439.312C1592.93 434.129 1592.01 429.991 1589.4 426.898C1586.83 423.805 1583.04 422.259 1578.03 422.259C1574.63 422.259 1571.38 423.13 1568.29 424.872C1565.2 426.615 1562.56 429.054 1560.39 432.19C1558.25 435.283 1556.86 438.877 1556.2 442.972L1546.01 504H1522.29ZM1727.72 505.96C1717.83 505.96 1709.6 503.782 1703.02 499.426C1696.49 495.07 1691.89 488.95 1689.23 481.065C1686.58 473.181 1686.1 464.033 1687.8 453.622C1689.49 443.342 1692.89 434.347 1697.99 426.636C1703.13 418.926 1709.6 412.958 1717.4 408.733C1725.24 404.464 1734.01 402.33 1743.73 402.33C1753.62 402.33 1761.83 404.529 1768.36 408.929C1774.9 413.285 1779.49 419.405 1782.15 427.29C1784.85 435.174 1785.35 444.366 1783.65 454.864C1782 465.1 1778.58 474.052 1773.39 481.719C1768.25 489.385 1761.78 495.353 1753.99 499.622C1746.19 503.848 1737.43 505.96 1727.72 505.96ZM1729.68 487.011C1735.17 487.011 1739.98 485.53 1744.12 482.568C1748.3 479.562 1751.72 475.533 1754.38 470.48C1757.08 465.384 1758.95 459.721 1760 453.491C1760.96 447.48 1760.98 442.035 1760.06 437.156C1759.15 432.234 1757.19 428.335 1754.18 425.46C1751.22 422.542 1747.1 421.082 1741.83 421.082C1736.34 421.082 1731.49 422.607 1727.26 425.656C1723.08 428.662 1719.66 432.713 1717 437.81C1714.35 442.863 1712.52 448.504 1711.51 454.733C1710.51 460.744 1710.47 466.189 1711.38 471.068C1712.3 475.947 1714.26 479.824 1717.26 482.699C1720.27 485.574 1724.41 487.011 1729.68 487.011ZM1791.94 504L1808.67 403.636H1831.61L1828.8 420.364H1829.84C1832.59 414.57 1836.46 410.105 1841.47 406.969C1846.53 403.789 1851.93 402.199 1857.68 402.199C1859.03 402.199 1860.49 402.264 1862.06 402.395C1863.62 402.482 1864.97 402.634 1866.11 402.852L1862.45 424.611C1861.45 424.262 1859.88 423.957 1857.74 423.696C1855.65 423.391 1853.58 423.239 1851.54 423.239C1847.22 423.239 1843.22 424.175 1839.51 426.048C1835.85 427.878 1832.76 430.426 1830.23 433.693C1827.71 436.96 1826.07 440.728 1825.33 444.997L1815.6 504H1791.94ZM1873.01 541.636C1869.79 541.636 1866.85 541.375 1864.19 540.852C1861.58 540.373 1859.51 539.807 1857.98 539.153L1866.61 520.727C1869.88 521.729 1872.82 522.165 1875.43 522.034C1878.09 521.947 1880.53 521.054 1882.75 519.355C1885.01 517.7 1887.23 514.977 1889.41 511.188L1892.42 505.764L1873.21 403.636H1897.38L1907.84 479.562H1908.88L1944.76 403.636H1970.83L1912.09 516.023C1909.25 521.468 1905.97 526.085 1902.22 529.875C1898.47 533.708 1894.18 536.627 1889.35 538.631C1884.56 540.634 1879.11 541.636 1873.01 541.636Z" fill="white"/> -</g> -<path d="M481.982 251C506.33 251 513.5 270.609 513.5 294.75V379.125H554.473V346.711C554.473 330.963 560.782 315.861 572.013 304.726L578.531 298.263C577.246 295.264 576.536 291.964 576.536 288.5C576.536 274.693 587.825 263.5 601.75 263.5C615.675 263.5 626.964 274.693 626.964 288.5C626.964 302.307 615.675 313.5 601.75 313.5C598.256 313.5 594.928 312.795 591.903 311.522L585.385 317.984C577.701 325.603 573.384 335.936 573.384 346.711V379.125H641.404C645.145 369.963 654.204 363.5 664.786 363.5C678.711 363.5 690 374.693 690 388.5C690 402.307 678.711 413.5 664.786 413.5C654.204 413.5 645.145 407.037 641.404 397.875H513.5V454.125H578.369C582.109 444.963 591.168 438.5 601.75 438.5C615.675 438.5 626.964 449.693 626.964 463.5C626.964 477.307 615.675 488.5 601.75 488.5C591.168 488.5 582.109 482.037 578.368 472.875H513.5V529.125H568.255C584.137 529.125 599.369 535.381 610.599 546.516L642.331 577.978C645.357 576.705 648.685 576 652.179 576C666.104 576 677.393 587.193 677.393 601C677.393 614.807 666.104 626 652.179 626C638.253 626 626.964 614.807 626.964 601C626.964 597.536 627.675 594.236 628.96 591.237L597.227 559.774C589.543 552.155 579.121 547.875 568.255 547.875H513.5V607.25C513.5 631.391 506.33 651 481.982 651C459.211 651 440.457 633.891 438.094 611.859C433.996 612.953 429.662 613.5 425.25 613.5C397.435 613.5 374.821 591.078 374.821 563.5C374.821 557.719 375.846 552.094 377.658 546.937C353.862 538.031 337 515.219 337 488.5C337 463.578 351.735 442.016 373.088 432.016C366.233 423.5 362.214 412.719 362.214 401C362.214 377.016 379.234 357.016 401.927 352.094C400.666 347.797 400.036 343.187 400.036 338.5C400.036 315.141 416.267 295.453 438.094 289.984C440.457 268.109 459.211 251 481.982 251Z" fill="white"/> -</g> -<defs> -<filter id="filter0_f_2392_147" x="-3653.3" y="-2588.03" width="8538.21" height="6211.24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/> -<feGaussianBlur stdDeviation="440.634" result="effect1_foregroundBlur_2392_147"/> -</filter> -<filter id="filter1_d_2392_147" x="751.242" y="402.199" width="1219.59" height="147.438" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dx="-8" dy="4"/> -<feGaussianBlur stdDeviation="2"/> -<feComposite in2="hardAlpha" operator="out"/> -<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.41 0"/> -<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2392_147"/> -<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2392_147" result="shape"/> -</filter> -<clipPath id="clip0_2392_147"> -<rect width="2344" height="969" rx="100" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/apps/docs/images/hero-light.svg b/apps/docs/images/hero-light.svg deleted file mode 100644 index 4d347b2a..00000000 --- a/apps/docs/images/hero-light.svg +++ /dev/null @@ -1,32 +0,0 @@ -<svg width="2344" height="969" viewBox="0 0 2344 969" fill="none" xmlns="http://www.w3.org/2000/svg"> -<g clip-path="url(#clip0_2397_133)"> -<rect width="2344" height="969" rx="100" fill="white"/> -<g filter="url(#filter0_d_2397_133)"> -<path d="M854.654 430.165L832.896 432.517C832.678 430.295 832.003 428.226 830.87 426.31C829.738 424.393 828.039 422.868 825.774 421.736C823.552 420.56 820.677 419.972 817.149 419.972C812.008 419.972 807.5 421.126 803.623 423.435C799.746 425.743 797.546 428.705 797.024 432.321C796.544 435.022 797.198 437.222 798.984 438.92C800.77 440.619 804.08 442.057 808.916 443.233L825.512 446.892C834.66 448.939 841.238 452.25 845.245 456.824C849.296 461.398 850.712 467.387 849.492 474.793C848.447 480.978 845.746 486.423 841.39 491.128C837.034 495.789 831.458 499.426 824.663 502.04C817.911 504.653 810.418 505.96 802.186 505.96C789.684 505.96 780.057 503.368 773.305 498.185C766.597 492.957 763.264 485.77 763.308 476.622L786.569 474.401C786.83 478.931 788.42 482.35 791.339 484.659C794.258 486.924 798.309 488.079 803.492 488.122C809.329 488.166 814.252 486.946 818.259 484.463C822.311 481.937 824.597 478.866 825.12 475.25C825.556 472.549 824.881 470.349 823.095 468.651C821.352 466.952 818.238 465.601 813.751 464.599L797.285 461.006C787.963 458.958 781.32 455.495 777.356 450.616C773.436 445.694 772.107 439.487 773.37 431.994C774.416 425.896 776.964 420.647 781.015 416.247C785.11 411.804 790.359 408.384 796.762 405.989C803.166 403.549 810.331 402.33 818.259 402.33C830.195 402.33 839.19 404.834 845.245 409.844C851.3 414.853 854.436 421.627 854.654 430.165ZM931.376 461.79L941.112 403.636H964.765L948.038 504H925.104L928.109 486.162H927.064C923.927 491.781 919.441 496.377 913.604 499.949C907.81 503.521 901.145 505.307 893.609 505.307C887.032 505.307 881.478 503.848 876.947 500.929C872.417 497.967 869.194 493.676 867.277 488.057C865.404 482.394 865.121 475.555 866.427 467.54L877.143 403.636H900.797L890.734 463.881C889.732 470.241 890.647 475.294 893.479 479.04C896.354 482.786 900.622 484.659 906.285 484.659C909.77 484.659 913.277 483.81 916.805 482.111C920.377 480.412 923.492 477.885 926.149 474.531C928.806 471.134 930.549 466.886 931.376 461.79ZM962.474 541.636L985.605 403.636H1008.87L1006.19 420.233H1007.56C1009.13 417.794 1011.24 415.202 1013.9 412.457C1016.6 409.67 1020.02 407.295 1024.16 405.335C1028.29 403.331 1033.33 402.33 1039.25 402.33C1046.96 402.33 1053.6 404.312 1059.18 408.276C1064.75 412.196 1068.74 418.011 1071.14 425.722C1073.58 433.388 1073.88 442.797 1072.05 453.949C1070.22 464.97 1066.85 474.335 1061.92 482.045C1057 489.756 1051.1 495.636 1044.22 499.688C1037.33 503.739 1029.95 505.764 1022.06 505.764C1016.31 505.764 1011.68 504.806 1008.15 502.889C1004.66 500.973 1002.03 498.664 1000.24 495.963C998.455 493.219 997.126 490.627 996.255 488.188H995.21L986.323 541.636H962.474ZM1000.44 453.818C999.392 460.309 999.37 465.993 1000.37 470.872C1001.42 475.751 1003.49 479.562 1006.58 482.307C1009.67 485.008 1013.72 486.358 1018.73 486.358C1023.96 486.358 1028.53 484.964 1032.45 482.176C1036.42 479.345 1039.71 475.49 1042.32 470.611C1044.98 465.688 1046.85 460.091 1047.94 453.818C1048.94 447.589 1048.94 442.057 1047.94 437.222C1046.94 432.386 1044.91 428.597 1041.86 425.852C1038.81 423.108 1034.68 421.736 1029.45 421.736C1024.35 421.736 1019.8 423.064 1015.79 425.722C1011.83 428.379 1008.54 432.103 1005.93 436.895C1003.31 441.687 1001.48 447.328 1000.44 453.818ZM1124.35 505.96C1114.29 505.96 1105.97 503.869 1099.39 499.688C1092.81 495.462 1088.2 489.494 1085.54 481.784C1082.93 474.03 1082.49 464.904 1084.23 454.406C1085.93 444.082 1089.39 435.022 1094.62 427.224C1099.85 419.384 1106.38 413.285 1114.22 408.929C1122.11 404.529 1130.82 402.33 1140.36 402.33C1146.55 402.33 1152.23 403.331 1157.41 405.335C1162.6 407.295 1166.98 410.345 1170.55 414.483C1174.12 418.621 1176.58 423.892 1177.93 430.295C1179.28 436.655 1179.22 444.235 1177.73 453.034L1176.62 460.287H1094.29L1096.84 444.344H1156.43C1157.22 439.813 1156.96 435.784 1155.65 432.256C1154.34 428.684 1152.16 425.874 1149.12 423.827C1146.07 421.779 1142.25 420.756 1137.68 420.756C1133.02 420.756 1128.66 421.954 1124.61 424.349C1120.61 426.702 1117.23 429.751 1114.48 433.497C1111.74 437.243 1110 441.186 1109.26 445.324L1106.58 460.614C1105.62 466.886 1105.84 472.005 1107.23 475.969C1108.63 479.933 1111.07 482.851 1114.55 484.724C1118.04 486.598 1122.43 487.534 1127.75 487.534C1131.23 487.534 1134.46 487.055 1137.42 486.097C1140.38 485.138 1143.02 483.701 1145.33 481.784C1147.68 479.824 1149.64 477.428 1151.21 474.597L1172.83 477.08C1170.44 482.917 1166.93 488.013 1162.31 492.369C1157.7 496.682 1152.16 500.036 1145.72 502.432C1139.31 504.784 1132.19 505.96 1124.35 505.96ZM1185.75 504L1202.48 403.636H1225.41L1222.6 420.364H1223.65C1226.39 414.57 1230.27 410.105 1235.28 406.969C1240.33 403.789 1245.73 402.199 1251.48 402.199C1252.83 402.199 1254.29 402.264 1255.86 402.395C1257.43 402.482 1258.78 402.634 1259.91 402.852L1256.25 424.611C1255.25 424.262 1253.68 423.957 1251.55 423.696C1249.46 423.391 1247.39 423.239 1245.34 423.239C1241.03 423.239 1237.02 424.175 1233.32 426.048C1229.66 427.878 1226.57 430.426 1224.04 433.693C1221.51 436.96 1219.88 440.728 1219.14 444.997L1209.4 504H1185.75ZM1255.27 504L1272 403.636H1294.67L1291.79 420.69H1293.04C1296.09 414.94 1300.29 410.454 1305.65 407.23C1311 403.963 1317.04 402.33 1323.75 402.33C1330.5 402.33 1335.94 403.985 1340.08 407.295C1344.26 410.562 1346.83 415.027 1347.79 420.69H1348.84C1351.97 415.071 1356.46 410.606 1362.3 407.295C1368.18 403.985 1374.78 402.33 1382.1 402.33C1391.24 402.33 1398.26 405.248 1403.14 411.085C1408.01 416.922 1409.52 425.438 1407.64 436.634L1396.41 504H1372.75L1383.47 440.293C1384.43 434.063 1383.47 429.511 1380.59 426.636C1377.76 423.718 1373.95 422.259 1369.16 422.259C1363.45 422.259 1358.7 424.023 1354.91 427.551C1351.17 431.08 1348.86 435.697 1347.99 441.403L1337.47 504H1314.27L1325.12 439.312C1325.9 434.129 1324.99 429.991 1322.37 426.898C1319.8 423.805 1316.01 422.259 1311 422.259C1307.61 422.259 1304.36 423.13 1301.27 424.872C1298.18 426.615 1295.54 429.054 1293.36 432.19C1291.23 435.283 1289.83 438.877 1289.18 442.972L1278.99 504H1255.27ZM1460.83 505.96C1450.76 505.96 1442.44 503.869 1435.87 499.688C1429.29 495.462 1424.67 489.494 1422.01 481.784C1419.4 474.03 1418.97 464.904 1420.71 454.406C1422.41 444.082 1425.87 435.022 1431.1 427.224C1436.32 419.384 1442.86 413.285 1450.7 408.929C1458.58 404.529 1467.3 402.33 1476.84 402.33C1483.02 402.33 1488.71 403.331 1493.89 405.335C1499.07 407.295 1503.45 410.345 1507.02 414.483C1510.6 418.621 1513.06 423.892 1514.41 430.295C1515.76 436.655 1515.69 444.235 1514.21 453.034L1513.1 460.287H1430.77L1433.32 444.344H1492.91C1493.69 439.813 1493.43 435.784 1492.13 432.256C1490.82 428.684 1488.64 425.874 1485.59 423.827C1482.54 421.779 1478.73 420.756 1474.16 420.756C1469.5 420.756 1465.14 421.954 1461.09 424.349C1457.08 426.702 1453.71 429.751 1450.96 433.497C1448.22 437.243 1446.47 441.186 1445.73 445.324L1443.05 460.614C1442.1 466.886 1442.31 472.005 1443.71 475.969C1445.1 479.933 1447.54 482.851 1451.03 484.724C1454.51 486.598 1458.91 487.534 1464.22 487.534C1467.71 487.534 1470.93 487.055 1473.9 486.097C1476.86 485.138 1479.49 483.701 1481.8 481.784C1484.15 479.824 1486.11 477.428 1487.68 474.597L1509.31 477.08C1506.91 482.917 1503.41 488.013 1498.79 492.369C1494.17 496.682 1488.64 500.036 1482.19 502.432C1475.79 504.784 1468.67 505.96 1460.83 505.96ZM1522.29 504L1539.02 403.636H1561.69L1558.82 420.69H1560.06C1563.11 414.94 1567.31 410.454 1572.67 407.23C1578.03 403.963 1584.06 402.33 1590.77 402.33C1597.52 402.33 1602.97 403.985 1607.1 407.295C1611.29 410.562 1613.86 415.027 1614.81 420.69H1615.86C1619 415.071 1623.48 410.606 1629.32 407.295C1635.2 403.985 1641.8 402.33 1649.12 402.33C1658.27 402.33 1665.28 405.248 1670.16 411.085C1675.04 416.922 1676.54 425.438 1674.67 436.634L1663.43 504H1639.77L1650.49 440.293C1651.45 434.063 1650.49 429.511 1647.62 426.636C1644.78 423.718 1640.97 422.259 1636.18 422.259C1630.47 422.259 1625.73 424.023 1621.94 427.551C1618.19 431.08 1615.88 435.697 1615.01 441.403L1604.49 504H1581.29L1592.14 439.312C1592.93 434.129 1592.01 429.991 1589.4 426.898C1586.83 423.805 1583.04 422.259 1578.03 422.259C1574.63 422.259 1571.38 423.13 1568.29 424.872C1565.2 426.615 1562.56 429.054 1560.39 432.19C1558.25 435.283 1556.86 438.877 1556.2 442.972L1546.01 504H1522.29ZM1727.72 505.96C1717.83 505.96 1709.6 503.782 1703.02 499.426C1696.49 495.07 1691.89 488.95 1689.23 481.065C1686.58 473.181 1686.1 464.033 1687.8 453.622C1689.49 443.342 1692.89 434.347 1697.99 426.636C1703.13 418.926 1709.6 412.958 1717.4 408.733C1725.24 404.464 1734.01 402.33 1743.73 402.33C1753.62 402.33 1761.83 404.529 1768.36 408.929C1774.9 413.285 1779.49 419.405 1782.15 427.29C1784.85 435.174 1785.35 444.366 1783.65 454.864C1782 465.1 1778.58 474.052 1773.39 481.719C1768.25 489.385 1761.78 495.353 1753.99 499.622C1746.19 503.848 1737.43 505.96 1727.72 505.96ZM1729.68 487.011C1735.17 487.011 1739.98 485.53 1744.12 482.568C1748.3 479.562 1751.72 475.533 1754.38 470.48C1757.08 465.384 1758.95 459.721 1760 453.491C1760.96 447.48 1760.98 442.035 1760.06 437.156C1759.15 432.234 1757.19 428.335 1754.18 425.46C1751.22 422.542 1747.1 421.082 1741.83 421.082C1736.34 421.082 1731.49 422.607 1727.26 425.656C1723.08 428.662 1719.66 432.713 1717 437.81C1714.35 442.863 1712.52 448.504 1711.51 454.733C1710.51 460.744 1710.47 466.189 1711.38 471.068C1712.3 475.947 1714.26 479.824 1717.26 482.699C1720.27 485.574 1724.41 487.011 1729.68 487.011ZM1791.94 504L1808.67 403.636H1831.61L1828.8 420.364H1829.84C1832.59 414.57 1836.46 410.105 1841.47 406.969C1846.53 403.789 1851.93 402.199 1857.68 402.199C1859.03 402.199 1860.49 402.264 1862.06 402.395C1863.62 402.482 1864.97 402.634 1866.11 402.852L1862.45 424.611C1861.45 424.262 1859.88 423.957 1857.74 423.696C1855.65 423.391 1853.58 423.239 1851.54 423.239C1847.22 423.239 1843.22 424.175 1839.51 426.048C1835.85 427.878 1832.76 430.426 1830.23 433.693C1827.71 436.96 1826.07 440.728 1825.33 444.997L1815.6 504H1791.94ZM1873.01 541.636C1869.79 541.636 1866.85 541.375 1864.19 540.852C1861.58 540.373 1859.51 539.807 1857.98 539.153L1866.61 520.727C1869.88 521.729 1872.82 522.165 1875.43 522.034C1878.09 521.947 1880.53 521.054 1882.75 519.355C1885.01 517.7 1887.23 514.977 1889.41 511.188L1892.42 505.764L1873.21 403.636H1897.38L1907.84 479.562H1908.88L1944.76 403.636H1970.83L1912.09 516.023C1909.25 521.468 1905.97 526.085 1902.22 529.875C1898.47 533.708 1894.18 536.627 1889.35 538.631C1884.56 540.634 1879.11 541.636 1873.01 541.636Z" fill="black"/> -</g> -<path d="M481.982 251C506.33 251 513.5 270.609 513.5 294.75V379.125H554.473V346.711C554.473 330.963 560.782 315.861 572.013 304.726L578.531 298.263C577.246 295.264 576.536 291.964 576.536 288.5C576.536 274.693 587.825 263.5 601.75 263.5C615.675 263.5 626.964 274.693 626.964 288.5C626.964 302.307 615.675 313.5 601.75 313.5C598.256 313.5 594.928 312.795 591.903 311.522L585.385 317.984C577.701 325.603 573.384 335.936 573.384 346.711V379.125H641.404C645.145 369.963 654.204 363.5 664.786 363.5C678.711 363.5 690 374.693 690 388.5C690 402.307 678.711 413.5 664.786 413.5C654.204 413.5 645.145 407.037 641.404 397.875H513.5V454.125H578.369C582.109 444.963 591.168 438.5 601.75 438.5C615.675 438.5 626.964 449.693 626.964 463.5C626.964 477.307 615.675 488.5 601.75 488.5C591.168 488.5 582.109 482.037 578.368 472.875H513.5V529.125H568.255C584.137 529.125 599.369 535.381 610.599 546.516L642.331 577.978C645.357 576.705 648.685 576 652.179 576C666.104 576 677.393 587.193 677.393 601C677.393 614.807 666.104 626 652.179 626C638.253 626 626.964 614.807 626.964 601C626.964 597.536 627.675 594.236 628.96 591.237L597.227 559.774C589.543 552.155 579.121 547.875 568.255 547.875H513.5V607.25C513.5 631.391 506.33 651 481.982 651C459.21 651 440.457 633.891 438.094 611.859C433.996 612.953 429.662 613.5 425.25 613.5C397.435 613.5 374.821 591.078 374.821 563.5C374.821 557.719 375.846 552.094 377.658 546.937C353.862 538.031 337 515.219 337 488.5C337 463.578 351.735 442.016 373.088 432.016C366.233 423.5 362.214 412.719 362.214 401C362.214 377.016 379.234 357.016 401.927 352.094C400.666 347.797 400.036 343.187 400.036 338.5C400.036 315.141 416.267 295.453 438.094 289.984C440.457 268.109 459.21 251 481.982 251Z" fill="black"/> -<g opacity="0.4" filter="url(#filter1_f_2397_133)"> -<rect x="-3176" y="2574.55" width="7287.1" height="929.709" transform="rotate(-30 -3176 2574.55)" fill="#369DFD"/> -</g> -</g> -<defs> -<filter id="filter0_d_2397_133" x="751.242" y="402.199" width="1219.59" height="147.438" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feColorMatrix in="SourceAlpha" type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 127 0" result="hardAlpha"/> -<feOffset dx="-8" dy="4"/> -<feGaussianBlur stdDeviation="2"/> -<feComposite in2="hardAlpha" operator="out"/> -<feColorMatrix type="matrix" values="0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0 0.41 0"/> -<feBlend mode="normal" in2="BackgroundImageFix" result="effect1_dropShadow_2397_133"/> -<feBlend mode="normal" in="SourceGraphic" in2="effect1_dropShadow_2397_133" result="shape"/> -</filter> -<filter id="filter1_f_2397_133" x="-4057.27" y="-1950.27" width="8538.21" height="6211.24" filterUnits="userSpaceOnUse" color-interpolation-filters="sRGB"> -<feFlood flood-opacity="0" result="BackgroundImageFix"/> -<feBlend mode="normal" in="SourceGraphic" in2="BackgroundImageFix" result="shape"/> -<feGaussianBlur stdDeviation="440.634" result="effect1_foregroundBlur_2397_133"/> -</filter> -<clipPath id="clip0_2397_133"> -<rect width="2344" height="969" rx="100" fill="white"/> -</clipPath> -</defs> -</svg> diff --git a/apps/docs/images/setup/1.png b/apps/docs/images/setup/1.png Binary files differdeleted file mode 100644 index aba55dc7..00000000 --- a/apps/docs/images/setup/1.png +++ /dev/null diff --git a/apps/docs/images/setup/2.png b/apps/docs/images/setup/2.png Binary files differdeleted file mode 100644 index 32f195cb..00000000 --- a/apps/docs/images/setup/2.png +++ /dev/null diff --git a/apps/docs/images/setup/3.png b/apps/docs/images/setup/3.png Binary files differdeleted file mode 100644 index a91ecaa4..00000000 --- a/apps/docs/images/setup/3.png +++ /dev/null diff --git a/apps/docs/introduction.mdx b/apps/docs/introduction.mdx deleted file mode 100644 index 1d804825..00000000 --- a/apps/docs/introduction.mdx +++ /dev/null @@ -1,156 +0,0 @@ ---- -title: "Introduction" -description: "Supermemory is the Memory API for the AI era." ---- - -We built [Supermemory](https://supermemory.ai) and scaled the RAG system to 10,000,000\+ documents and multiple thousands of users. -We faced challenges. It turns out that building scalable, reliable, production-ready Memory layer is pretty hard. - -Introducing the Supermemory API. An _affordable_, _easy-to-use_, and _production-ready_ Memory API for the AI era. - -<img - className="block dark:hidden" - src="/images/hero-light.svg" - alt="Hero Light" -/> - -<img - className="hidden dark:block" - src="/images/hero-dark.svg" - alt="Hero Dark" -/> - -Trusted by Open source [9k\+ stars](https://git.new/memory), one of the fastest [growing projects in Q3 2024](https://runacap.com/ross-index/q3-2024/), Product of the day on [ProductHunt](https://www.producthunt.com/posts/supermemory). - -...and thousands of you\! - -## Why Supermemory? - -### The problem - -... so you want to build your own memory layer. Let's go through your decision process: - -<Steps> - <Step title="Let's choose a vector database"> - <Warning> - Found a vector database? good luck - - - Oh no, it's way too expensive. Time to switch. - - Turns out it's painfully slow. Let's try another. - - Great, now it won't scale. Back to square one. - - The maintenance is a nightmare. Need something else. - </Warning> - </Step> - <Step title="Now for the embedding model"> - <Note> - Which one to choose? Unless you have a PhD in AI, good luck figuring out: - - - Which model fits your use case - - What are the performance tradeoffs - - How to keep up with new releases - </Note> - </Step> - <Step title="Time to build the memory layer"> - <CardGroup cols="2"> - <Card title="Support multimodal"> - - Websites: How do you handle JavaScript? What about rate limits? - - PDFs: OCR keeps failing, text extraction is inconsistent - - Images: Need computer vision models now? - - Audio/Video: Transcription costs add up quickly - </Card> - <Card title="Handle everything"> - - Multiple languages: Different models for each? - - Various formats to parse: \ - • Markdown: Tables break everything \ - • HTML: Scripts and styles get in the way \ - • PDF: Layout ruins the extraction \ - • Word docs: Good luck with formatting \ - • And somehow make it all work together... - </Card> - </CardGroup> - </Step> -</Steps> - -And in the middle of all this, you're wondering... - -> "When will I actually ship my product?" - -### The solution - -If you are not a fan of reinventing the wheel, you can use Supermemory. - -<CardGroup cols="2"> - <Card title="Affordable & Easy to Use" icon="circle-check"> - <div className="text-emerald-700 space-y-1"> - - Start for free, scale as you grow - Simple API, deploy in minutes - No - complex setup or maintenance - Clear, predictable pricing - - </div> - </Card> - <Card title="Ready-made Connectors" icon="circle-check"> - <div className="text-emerald-700 space-y-1"> - - Notion, Google Drive, Slack integration - Web scraping and PDF - processing - Email and calendar sync - Custom connector SDK - - </div> - </Card> - <Card title="Production Ready" icon="circle-check"> - <div className="text-emerald-700 space-y-1"> - - Enterprise-grade security - Sub-200ms latency at scale - Automatic - failover and redundancy - 99.9% uptime guarantee - - </div> - </Card> - <Card title="Open Source & Trusted" icon="circle-check"> - <div className="text-emerald-700 space-y-1"> - - Open source core - Active community - Regular security audits - - Transparent development - - </div> - </Card> -</CardGroup> - -Stop reinventing the wheel. Focus on building your product while we handle the memory infrastructure. - -## Use cases - -What can you do with Supermemory? - -<CardGroup cols="2"> - <Card title="Chat with <X> app" icon="message"> - Quickly built chat apps like: - - • Chat with your Twitter bookmarks \ - • Interact with your PDF documents \ - • Chat with your company documentation \ - • Chat with your personal knowledge base - ... and more\\! - </Card> - <Card title="Smart search in your apps" icon="magnifying-glass"> - Search things with AI: - - • Product recommendations \ - • Knowledge base search \ - • Document similarity matching \ - • Content discovery systems \ - • Research paper analysis - </Card> - <Card title="Assistants and Agents" icon="chart-line"> - Assistants and Agents: - - • Email management \ - • Meeting summarization \ - • Task prioritization \ - • Calendar organization \ - • Personal knowledge management - </Card> - <Card title="Import tools and integrations" icon="toolbox"> - You can contribute to supermemory by making community import tools. Examples: - - • Notion \ - • IOS shortcuts - - \ - • YOUR app / service - </Card> -</CardGroup>
\ No newline at end of file diff --git a/apps/docs/logo/dark.svg b/apps/docs/logo/dark.svg deleted file mode 100644 index 513d7685..00000000 --- a/apps/docs/logo/dark.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="992" height="1120" viewBox="0 0 992 1120" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M407.233 0C475.621 0 495.762 54.8799 495.762 122.441V358.578H610.849V267.861C610.849 223.79 628.571 181.524 660.115 150.361L678.424 132.274C674.815 123.879 672.819 114.645 672.819 104.95C672.819 66.3082 704.528 34.9832 743.642 34.9832C782.757 34.9832 814.465 66.3082 814.465 104.95C814.465 143.591 782.757 174.916 743.642 174.916C733.828 174.916 724.481 172.944 715.983 169.379L697.675 187.466C676.091 208.788 663.966 237.707 663.966 267.861V358.578H855.025C865.531 332.936 890.977 314.849 920.7 314.849C959.814 314.849 991.523 346.174 991.523 384.815C991.523 423.456 959.814 454.781 920.7 454.781C890.977 454.781 865.531 436.693 855.025 411.052H495.762V568.477H677.967C688.474 542.835 713.92 524.748 743.642 524.748C782.757 524.748 814.465 556.073 814.465 594.714C814.465 633.355 782.757 664.68 743.642 664.68C713.92 664.68 688.474 646.593 677.967 620.951H495.762V778.376H649.559C694.17 778.376 736.953 795.883 768.498 827.046L857.629 915.099C866.127 911.534 875.475 909.562 885.288 909.562C924.403 909.562 956.111 940.887 956.111 979.529C956.111 1018.17 924.403 1049.5 885.288 1049.5C846.174 1049.5 814.465 1018.17 814.465 979.529C814.465 969.834 816.461 960.599 820.07 952.204L730.938 864.151C709.355 842.829 680.082 830.85 649.559 830.85H495.762V997.02C495.762 1064.58 475.621 1119.46 407.233 1119.46C343.271 1119.46 290.596 1071.58 283.956 1009.92C272.448 1012.98 260.275 1014.51 247.881 1014.51C169.754 1014.51 106.235 951.761 106.235 874.579C106.235 858.4 109.112 842.657 114.202 828.227C47.3629 803.301 0 739.457 0 664.68C0 594.933 41.3872 534.587 101.366 506.6C82.1105 482.768 70.8231 452.595 70.8231 419.798C70.8231 352.674 118.629 296.701 182.369 282.926C178.828 270.901 177.058 258.001 177.058 244.882C177.058 179.507 222.65 124.409 283.956 109.104C290.596 47.8832 343.271 0 407.233 0Z" fill="white" fill-opacity="0.8"/> -</svg> diff --git a/apps/docs/logo/light.svg b/apps/docs/logo/light.svg deleted file mode 100644 index 96ae2b7b..00000000 --- a/apps/docs/logo/light.svg +++ /dev/null @@ -1,3 +0,0 @@ -<svg width="992" height="1120" viewBox="0 0 992 1120" fill="none" xmlns="http://www.w3.org/2000/svg"> -<path d="M407.233 0C475.621 0 495.762 54.8799 495.762 122.441V358.578H610.849V267.861C610.849 223.79 628.571 181.524 660.115 150.361L678.424 132.274C674.815 123.879 672.819 114.645 672.819 104.95C672.819 66.3082 704.528 34.9832 743.642 34.9832C782.757 34.9832 814.465 66.3082 814.465 104.95C814.465 143.591 782.757 174.916 743.642 174.916C733.828 174.916 724.481 172.944 715.983 169.379L697.675 187.466C676.091 208.788 663.966 237.707 663.966 267.861V358.578H855.025C865.531 332.936 890.977 314.849 920.7 314.849C959.814 314.849 991.523 346.174 991.523 384.815C991.523 423.456 959.814 454.781 920.7 454.781C890.977 454.781 865.531 436.693 855.025 411.052H495.762V568.477H677.967C688.474 542.835 713.92 524.748 743.642 524.748C782.757 524.748 814.465 556.073 814.465 594.714C814.465 633.355 782.757 664.68 743.642 664.68C713.92 664.68 688.474 646.593 677.967 620.951H495.762V778.376H649.559C694.17 778.376 736.953 795.883 768.498 827.046L857.629 915.099C866.127 911.534 875.475 909.562 885.288 909.562C924.403 909.562 956.111 940.887 956.111 979.529C956.111 1018.17 924.403 1049.5 885.288 1049.5C846.174 1049.5 814.465 1018.17 814.465 979.529C814.465 969.834 816.461 960.599 820.07 952.204L730.938 864.151C709.355 842.829 680.082 830.85 649.559 830.85H495.762V997.02C495.762 1064.58 475.621 1119.46 407.233 1119.46C343.271 1119.46 290.596 1071.58 283.956 1009.92C272.448 1012.98 260.275 1014.51 247.881 1014.51C169.754 1014.51 106.235 951.761 106.235 874.579C106.235 858.4 109.112 842.657 114.202 828.227C47.3629 803.301 0 739.457 0 664.68C0 594.933 41.3872 534.587 101.366 506.6C82.1105 482.768 70.8231 452.595 70.8231 419.798C70.8231 352.674 118.629 296.701 182.369 282.926C178.828 270.901 177.058 258.001 177.058 244.882C177.058 179.507 222.65 124.409 283.956 109.104C290.596 47.8832 343.271 0 407.233 0Z" fill="black" fill-opacity="0.8"/> -</svg> diff --git a/apps/docs/mint.json b/apps/docs/mint.json deleted file mode 100644 index bb47ae72..00000000 --- a/apps/docs/mint.json +++ /dev/null @@ -1,75 +0,0 @@ -{ - "$schema": "https://mintlify.com/schema.json", - "name": "Supermemory | Memory API for the AI era", - "logo": { - "dark": "/logo/dark.svg", - "light": "/logo/light.svg" - }, - "favicon": "/favicon.png", - "colors": { - "primary": "#1E3A8A", - "light": "#3B82F6", - "dark": "#1E3A8A", - "anchors": { - "from": "#1E3A8A", - "to": "#3B82F6" - } - }, - "topbarLinks": [ - { - "name": "Support", - "url": "mailto:[email protected]" - } - ], - "topbarCtaButton": { - "name": "Dashboard", - "url": "https://supermemory.ai" - }, - "tabs": [ - { - "name": "API Reference", - "url": "api-reference/endpoints", - "openapi": "/openapi.json" - }, - { - "name": "Changelog", - "url": "changelog/overview" - } - ], - "anchors": [ - { - "name": "Github", - "icon": "github", - "url": "https://git.new/memory" - }, - { - "name": "Ask the founder", - "icon": "mail", - "url": "mailto:[email protected]" - }, - { - "name": "X (Twitter)", - "icon": "twitter", - "url": "https://x.com/supermemoryai" - } - ], - "navigation": [ - { - "group": "Get Started (5 mins)", - "pages": ["introduction", "quickstart", "self-hosting"] - }, - { - "group": "Essentials", - "pages": ["essentials/metadata-filtering", "essentials/pricing"] - }, - { - "group": "Changelog", - "pages": ["changelog/overview"] - } - ], - "footerSocials": { - "x": "https://x.com/supermemoryai", - "github": "https://github.com/supermemoryai", - "linkedin": "https://linkedin.com/company/supermemoryai" - } -} diff --git a/apps/docs/openapi.json b/apps/docs/openapi.json deleted file mode 100644 index 1ac21936..00000000 --- a/apps/docs/openapi.json +++ /dev/null @@ -1,625 +0,0 @@ -{ - "openapi": "3.1.0", - "info": { - "title": "Supermemory API", - "description": "best memory api on 🌍", - "version": "2.0.0" - }, - "servers": [ - { - "url": "https://v2.api.supermemory.ai", - "description": "Production Server" - } - ], - "paths": { - "/settings": { - "put": { - "responses": {}, - "operationId": "putSettings", - "parameters": [], - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "shouldLLMFilter": { - "type": "boolean" - }, - "categories": { - "type": "array", - "items": { - "type": "string", - "minLength": 1, - "maxLength": 50 - } - }, - "filterPrompt": { - "type": "string", - "minLength": 1, - "maxLength": 750 - }, - "includeItems": { - "type": "array", - "items": { - "type": "string", - "minLength": 1, - "maxLength": 20 - } - }, - "excludeItems": { - "type": "array", - "items": { - "type": "string", - "minLength": 1, - "maxLength": 20 - } - }, - "filterTags": { - "type": "array", - "items": { - "type": "object", - "properties": { - "tag": { - "type": "string", - "minLength": 1, - "maxLength": 50 - }, - "score": { - "type": "number", - "minimum": 0 - } - }, - "required": ["tag", "score"] - } - } - } - } - } - } - } - } - }, - "/add": { - "post": { - "responses": { - "200": { - "description": "Memory added successfully", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "status": { - "type": "string" - } - }, - "required": ["id", "status"] - } - } - } - }, - "401": { - "description": "Unauthorized", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - } - }, - "operationId": "postAdd", - "tags": ["Memory Management"], - "parameters": [], - "description": "Add a new memory with content and metadata", - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "content": { - "type": "string" - }, - "metadata": { - "type": "object", - "additionalProperties": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "number" - }, - { - "type": "boolean" - } - ] - } - }, - "spaceIds": { - "type": "array", - "items": { - "type": "string" - } - }, - "summarizeMemories": { - "type": "boolean", - "default": false - }, - "id": { - "type": "string" - } - }, - "required": ["content"] - } - } - } - } - } - }, - "/update/{id}": { - "put": { - "responses": { - "200": { - "description": "Memory updated successfully", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "status": { - "type": "string" - } - }, - "required": ["id", "status"] - } - } - } - }, - "404": { - "description": "Memory not found", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - } - }, - "operationId": "putUpdateById", - "tags": ["Memory Management"], - "parameters": [ - { - "in": "path", - "name": "id", - "schema": { - "type": "string" - }, - "required": true - } - ], - "description": "Update an existing memory", - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "content": { - "type": "string" - }, - "metadata": { - "type": "object", - "additionalProperties": { - "anyOf": [ - { - "type": "string" - }, - { - "type": "number" - }, - { - "type": "boolean" - } - ] - } - }, - "spaceIds": { - "type": "array", - "items": { - "type": "string" - } - }, - "summarizeMemories": { - "type": "boolean", - "default": false - } - }, - "required": ["content"] - } - } - } - } - } - }, - "/delete/{id}": { - "delete": { - "responses": { - "200": { - "description": "Memory deleted successfully", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "success": { - "type": "boolean" - } - }, - "required": ["success"] - } - } - } - }, - "404": { - "description": "Memory not found", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - } - }, - "operationId": "deleteDeleteById", - "tags": ["Memory Management"], - "parameters": [ - { - "in": "path", - "name": "id", - "schema": { - "type": "string" - }, - "required": true - } - ], - "description": "Delete a memory" - } - }, - "/search": { - "post": { - "responses": { - "200": { - "description": "Search results", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "results": { - "type": "array", - "items": { - "type": "object", - "properties": { - "documentId": { - "type": "string" - }, - "chunks": { - "type": "array", - "items": { - "type": "object", - "properties": { - "content": { - "type": "string" - }, - "isRelevant": { - "type": "boolean" - } - }, - "required": ["content", "isRelevant"] - } - }, - "score": { - "type": "number" - }, - "documentSummary": { - "type": "string" - }, - "metadata": { - "type": "object", - "additionalProperties": {} - }, - "title": { - "type": "string" - }, - "createdAt": { - "type": "string" - }, - "updatedAt": { - "type": "string" - } - }, - "required": [ - "documentId", - "chunks", - "score", - "documentSummary", - "metadata", - "title", - "createdAt", - "updatedAt" - ] - } - } - }, - "required": ["results"] - } - } - } - }, - "400": { - "description": "Invalid request parameters", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - }, - "500": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - } - }, - "operationId": "postSearch", - "tags": ["Search"], - "parameters": [], - "description": "Search through documents with metadata filtering", - "requestBody": { - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "q": { - "type": "string", - "minLength": 1 - }, - "limit": { - "type": "integer", - "exclusiveMinimum": 0, - "default": 10 - }, - "filters": { - "anyOf": [ - { - "type": "object", - "properties": { - "OR": { - "type": "array", - "items": {} - }, - "AND": { - "type": "array", - "items": {} - } - } - }, - { - "type": "object", - "additionalProperties": {} - } - ] - }, - "categoriesFilter": { - "type": "array", - "items": { - "type": "string" - } - } - }, - "required": ["q"] - } - } - } - } - } - }, - "/fastsearch": { - "get": { - "responses": { - "200": { - "description": "Fast search results", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "results": { - "type": "array", - "items": { - "type": "object", - "properties": { - "id": { - "type": "string" - }, - "content": { - "type": "string" - }, - "similarity": { - "type": "number" - } - }, - "required": ["id", "content", "similarity"] - } - } - }, - "required": ["results"] - } - } - } - }, - "500": { - "description": "Server error", - "content": { - "application/json": { - "schema": { - "type": "object", - "properties": { - "error": { - "type": "string" - }, - "details": { - "type": "string" - } - }, - "required": ["error"] - } - } - } - } - }, - "operationId": "getFastsearch", - "tags": ["Search"], - "parameters": [ - { - "in": "query", - "name": "q", - "schema": { - "type": "string", - "minLength": 1 - }, - "required": true - }, - { - "in": "query", - "name": "limit", - "schema": { - "type": "string", - "pattern": "^\\d+$" - }, - "required": false - } - ], - "description": "Fast, lossy search using quantized embeddings" - } - }, - "/connect/{app}": { - "get": { - "responses": {}, - "operationId": "getConnectByApp", - "tags": ["Connect"], - "parameters": [ - { - "in": "path", - "name": "app", - "schema": { - "type": "string", - "enum": ["notion"] - }, - "required": true - }, - { - "in": "query", - "name": "id", - "schema": { - "type": "string" - }, - "required": true - }, - { - "in": "query", - "name": "redirectUrl", - "schema": { - "type": "string" - }, - "required": false - } - ] - } - }, - "/connections/{connectionId}": { - "get": { - "responses": {}, - "operationId": "getConnectionsByConnectionId", - "tags": ["Connect"], - "parameters": [ - { - "in": "path", - "name": "connectionId", - "schema": { - "type": "string" - }, - "required": true - } - ] - } - } - }, - "components": { - "schemas": {} - } -} diff --git a/apps/docs/quickstart.mdx b/apps/docs/quickstart.mdx deleted file mode 100644 index bf7b2f6b..00000000 --- a/apps/docs/quickstart.mdx +++ /dev/null @@ -1,59 +0,0 @@ ---- -title: "Get Started (5 mins)" -description: "Start using Supermemory API in under 5 minutes" ---- - -To use the Supermemory API, you'll need: - -1. An API key (get one by signing up at https://dev.supermemory.ai ) -2. Basic understanding of REST APIs -3. A tool to make HTTP requests (like curl, Postman, or your favorite programming language) - -<AccordionGroup> - <Accordion title="Getting Your API Key" icon="key"> - 1. Login into https://dev.supermemory.ai and create an organization - 2. Create an api key, copy and save it securely. - -  - - Keep your API key secure and never share it publicly. You'll need this key for authenticating all API requests. - </Accordion> -</AccordionGroup> - -For even starter quickstart, you can use our API playground here - [API Playground](/api-reference/endpoints/add-new-content) - -You can also browse the postman collection - [Postman Collection](https://documenter.getpostman.com/view/21641015/2sB2cUBhvq#cf679c90-d60b-4d0d-a7aa-a909e97e41c3) - -## Base URL - -All API requests should be made to: - -``` -https://v2.api.supermemory.ai -``` - -## Add your first memory - -```bash -curl -X POST https://v2.api.supermemory.ai/add \ - -H "x-api-key: YOUR_API_KEY" \ - -H "Content-Type: application/json" \ - -d '{"content": "This is the content of my first memory."}' -``` - -This will add a new memory to your Supermemory account. - -Try it out in the [API Playground](/api-reference/endpoints/add-new-content) - -## Search your memories - -```bash -curl -X POST https://v2.api.supermemory.ai/search \ - -H "x-api-key: YOUR_API_KEY" \ - -H "Content-Type: application/json" \ - -d '{"q": "This is the content of my first memory."}' -``` - -Try it out in the [API Playground](/api-reference/endpoints/search-content) - -That's it\\! You've now added your first memory and searched for it.
\ No newline at end of file diff --git a/apps/docs/self-hosting.mdx b/apps/docs/self-hosting.mdx deleted file mode 100644 index efac8170..00000000 --- a/apps/docs/self-hosting.mdx +++ /dev/null @@ -1,94 +0,0 @@ ---- -title: "Self-hosting" -description: "Self-host Supermemory on your own infrastructure" ---- - -## Local Setup - -<AccordionGroup> - <Accordion icon="github" title="Clone the repository"> - ```bash - git clone https://github.com/supermemoryai/supermemory.git - cd supermemory - npm i -g bun - bun install - ``` - </Accordion> - - <Accordion icon="database" title="Database Setup"> - To spin up the database locally, use Docker Compose: - - ```bash - docker-compose up -d - ``` - - This will start a PostgreSQL database with pgvector extension at `localhost:5432`. - - To generate and apply migrations: - ```bash - bun run generate-migration - bun run migrate:local - ``` - - > Note: When coding or making changes, you MUST use the drizzle-orm functions exported from `packages/db` for interacting with the database. Not using them will cause type errors that are hard to debug. - </Accordion> - - <Accordion icon="gear" title="Environment Variables"> - #### Backend (`apps/backend/.env` and `apps/backend/.dev.vars`): - - ```env - WORKOS_API_KEY=your_workos_api_key - WORKOS_CLIENT_ID=your_workos_client_id - WORKOS_COOKIE_PASSWORD=your_cookie_password - DATABASE_URL="postgresql://postgres:postgres@localhost:5432/supermemorylocal" - CONTENT_WORKFLOW=your_content_workflow - GEMINI_API_KEY=your_gemini_api_key - NODE_ENV=development - OPEN_AI_API_KEY=your_openai_api_key - BRAINTRUST_API_KEY=your_braintrust_api_key - RESEND_API_KEY=your_resend_api_key - TURNSTILE_SECRET_KEY=your_turnstile_secret_key - ``` - - #### Web (`apps/web/.env` and `apps/web/.dev.vars`): - - ```env - WORKOS_CLIENT_ID=your_workos_client_id - WORKOS_API_KEY=your_workos_api_key - WORKOS_REDIRECT_URI="http://localhost:3000/callback" - WORKOS_COOKIE_PASSWORD=your_cookie_password - DATABASE_URL="postgresql://postgres:postgres@localhost:5432/supermemorylocal" - - CLOUDFLARE_ACCOUNT_ID=your_cloudflare_account_id - R2_ACCESS_KEY_ID=your_r2_access_key_id - R2_SECRET_ACCESS_KEY=your_r2_secret_access_key - - BACKEND_URL=http://localhost:8787 - OPENAI_API_KEY=your_openai_api_key - NOTION_CLIENT_ID=your_notion_client_id - NOTION_CLIENT_SECRET=your_notion_client_secret - - NODE_ENV=development - STRIPE_CHECKOUT_KEY=your_stripe_checkout_key - STRIPE_WEBHOOK_SECRET=your_stripe_webhook_secret - ``` - - You also need to update the Wrangler config for the web app and backend to your own account's resources on Cloudflare. - </Accordion> - - <Accordion icon="code" title="Schema Changes"> - To edit the database schema, modify the files in `packages/db/schema.ts`, and then repeat the migration steps from the Database Setup section. - </Accordion> - - <Accordion icon="rocket" title="Running the Application"> - 1. Install dependencies: - ```bash - bun install - ``` - - 2. Start the development servers: - ```bash - bun run dev - ``` - </Accordion> -</AccordionGroup> diff --git a/apps/docs/snippets/snippet-intro.mdx b/apps/docs/snippets/snippet-intro.mdx deleted file mode 100644 index 32f95c0d..00000000 --- a/apps/docs/snippets/snippet-intro.mdx +++ /dev/null @@ -1 +0,0 @@ -hi
\ No newline at end of file |