From f03d1227e5a3ee90fe6156b6e69155be2e3ecd9d Mon Sep 17 00:00:00 2001 From: nzambello Date: Wed, 26 Mar 2025 17:44:26 +0200 Subject: [PATCH] add dashboard support api --- .../Billing - Credits/Credits (userID).bru | 67 +++++++++++++++++++ .../Billing - Credits/Credits (username).bru | 67 +++++++++++++++++++ .../Billing - Credits/Credits and stats.bru | 24 +++++++ .../Verify tokens (agent creation).bru | 20 ++++++ .../Verify tokens (import doc).bru | 21 ++++++ .../Verify tokens (session creation).bru | 20 ++++++ memori-dashboard/Billing - Credits/folder.bru | 3 + memori-dashboard/Image resize.bru | 65 ++++++++++++++++++ .../Internal/Azure Speech Key.bru | 11 +++ .../Internal/ConvertAPI Token.bru | 29 ++++++++ memori-dashboard/Internal/Feedback.bru | 28 ++++++++ .../Internal/Functions middleware.bru | 15 +++++ .../Internal/Intents middleware.bru | 15 +++++ .../Internal/Mail to followers.bru | 30 +++++++++ .../Internal/Public page manifest.bru | 16 +++++ memori-dashboard/Internal/folder.bru | 3 + .../Internal/robots.txt (allowed).bru | 15 +++++ .../Internal/robots.txt (not allowed).bru | 15 +++++ memori-dashboard/Link preview.bru | 44 ++++++++++++ memori-dashboard/Tenant Data.bru | 15 +++++ .../Media HTML viewer.bru | 16 +++++ .../Privacy Page VR.bru | 15 +++++ .../VR Tutorial.bru | 19 ++++++ .../Virtual spaces - VR support/VR vuplex.bru | 16 +++++ .../Virtual spaces - VR support/folder.bru | 3 + .../Widget support/Lexicon map.bru | 11 +++ memori-dashboard/Widget support/folder.bru | 3 + memori-dashboard/bruno.json | 9 +++ memori-dashboard/environments/development.bru | 3 + memori-dashboard/environments/production.bru | 3 + memori-dashboard/environments/staging.bru | 3 + memori-dashboard/environments/wiit.bru | 3 + 32 files changed, 627 insertions(+) create mode 100644 memori-dashboard/Billing - Credits/Credits (userID).bru create mode 100644 memori-dashboard/Billing - Credits/Credits (username).bru create mode 100644 memori-dashboard/Billing - Credits/Credits and stats.bru create mode 100644 memori-dashboard/Billing - Credits/Verify tokens (agent creation).bru create mode 100644 memori-dashboard/Billing - Credits/Verify tokens (import doc).bru create mode 100644 memori-dashboard/Billing - Credits/Verify tokens (session creation).bru create mode 100644 memori-dashboard/Billing - Credits/folder.bru create mode 100644 memori-dashboard/Image resize.bru create mode 100644 memori-dashboard/Internal/Azure Speech Key.bru create mode 100644 memori-dashboard/Internal/ConvertAPI Token.bru create mode 100644 memori-dashboard/Internal/Feedback.bru create mode 100644 memori-dashboard/Internal/Functions middleware.bru create mode 100644 memori-dashboard/Internal/Intents middleware.bru create mode 100644 memori-dashboard/Internal/Mail to followers.bru create mode 100644 memori-dashboard/Internal/Public page manifest.bru create mode 100644 memori-dashboard/Internal/folder.bru create mode 100644 memori-dashboard/Internal/robots.txt (allowed).bru create mode 100644 memori-dashboard/Internal/robots.txt (not allowed).bru create mode 100644 memori-dashboard/Link preview.bru create mode 100644 memori-dashboard/Tenant Data.bru create mode 100644 memori-dashboard/Virtual spaces - VR support/Media HTML viewer.bru create mode 100644 memori-dashboard/Virtual spaces - VR support/Privacy Page VR.bru create mode 100644 memori-dashboard/Virtual spaces - VR support/VR Tutorial.bru create mode 100644 memori-dashboard/Virtual spaces - VR support/VR vuplex.bru create mode 100644 memori-dashboard/Virtual spaces - VR support/folder.bru create mode 100644 memori-dashboard/Widget support/Lexicon map.bru create mode 100644 memori-dashboard/Widget support/folder.bru create mode 100644 memori-dashboard/bruno.json create mode 100644 memori-dashboard/environments/development.bru create mode 100644 memori-dashboard/environments/production.bru create mode 100644 memori-dashboard/environments/staging.bru create mode 100644 memori-dashboard/environments/wiit.bru diff --git a/memori-dashboard/Billing - Credits/Credits (userID).bru b/memori-dashboard/Billing - Credits/Credits (userID).bru new file mode 100644 index 0000000..afb5c1e --- /dev/null +++ b/memori-dashboard/Billing - Credits/Credits (userID).bru @@ -0,0 +1,67 @@ +meta { + name: Credits (userID) + type: http + seq: 2 +} + +post { + url: {{host}}/api/credits + body: json + auth: inherit +} + +headers { + user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 +} + +body:json { + { + "tenant": "www.aisuru.com", + "userID": "262103a9-527b-4a82-b399-9b18bf3c42d8" + } +} + +docs { + Verify credits and operations a user has enough tokens for. + + Example: + + ```sh + http -v POST http://localhost:3000/api/credits userName=nicola tenant=aisuru-staging-tokenized.aclambda.online + http -v POST http://localhost:3000/api/credits userID=585ec0ff-e805-495e-b8fc-5b0b8dd288ff tenant=aisuru-staging-tokenized.aclambda.online + ``` + + Returns: + + ```json + { + "outcome": { + "twin_creation": { + "cost": 1, + "permitted": true + }, + "session_creation": { + "cost": 1, + "permitted": true + }, + "dt_session_creation": { + "cost": 1, + "permitted": true + }, + "gpt_messages": { + "cost": 1, + "permitted": true + }, + "dt_gpt_messages": { + "cost": 3, + "permitted": false + }, + "import_document": { + "cost": 6, + "permitted": false + } + }, + "tokens": 1 + } + ``` +} diff --git a/memori-dashboard/Billing - Credits/Credits (username).bru b/memori-dashboard/Billing - Credits/Credits (username).bru new file mode 100644 index 0000000..b21f739 --- /dev/null +++ b/memori-dashboard/Billing - Credits/Credits (username).bru @@ -0,0 +1,67 @@ +meta { + name: Credits (username) + type: http + seq: 1 +} + +post { + url: {{host}}/api/credits + body: json + auth: inherit +} + +headers { + user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 +} + +body:json { + { + "tenant": "www.aisuru.com", + "userName": "nzambello" + } +} + +docs { + Verify credits and operations a user has enough tokens for. + + Example: + + ```sh + http -v POST http://localhost:3000/api/credits userName=nicola tenant=aisuru-staging-tokenized.aclambda.online + http -v POST http://localhost:3000/api/credits userID=585ec0ff-e805-495e-b8fc-5b0b8dd288ff tenant=aisuru-staging-tokenized.aclambda.online + ``` + + Returns: + + ```json + { + "outcome": { + "twin_creation": { + "cost": 1, + "permitted": true + }, + "session_creation": { + "cost": 1, + "permitted": true + }, + "dt_session_creation": { + "cost": 1, + "permitted": true + }, + "gpt_messages": { + "cost": 1, + "permitted": true + }, + "dt_gpt_messages": { + "cost": 3, + "permitted": false + }, + "import_document": { + "cost": 6, + "permitted": false + } + }, + "tokens": 1 + } + ``` +} diff --git a/memori-dashboard/Billing - Credits/Credits and stats.bru b/memori-dashboard/Billing - Credits/Credits and stats.bru new file mode 100644 index 0000000..0f57cfe --- /dev/null +++ b/memori-dashboard/Billing - Credits/Credits and stats.bru @@ -0,0 +1,24 @@ +meta { + name: Credits and stats + type: http + seq: 3 +} + +post { + url: {{host}}/api/credits-stats + body: json + auth: inherit +} + +headers { + user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 +} + +body:json { + { + "authToken": "fd10bb42-98d9-4c08-8e02-2b08bd4e4975", + "userID": "262103a9-527b-4a82-b399-9b18bf3c42d8", + "tenant": "www.aisuru.com", + "month": "2024.06" + } +} diff --git a/memori-dashboard/Billing - Credits/Verify tokens (agent creation).bru b/memori-dashboard/Billing - Credits/Verify tokens (agent creation).bru new file mode 100644 index 0000000..9e7e003 --- /dev/null +++ b/memori-dashboard/Billing - Credits/Verify tokens (agent creation).bru @@ -0,0 +1,20 @@ +meta { + name: Verify tokens (agent creation) + type: http + seq: 4 +} + +post { + url: {{host}}/api/verify-tokens + body: json + auth: inherit +} + +body:json { + { + "operation": "twin_creation", + "userName": "nzambello", // userName OR userID + "userID": "262103a9-527b-4a82-b399-9b18bf3c42d8", + "tenant": "www.aisuru.com" + } +} diff --git a/memori-dashboard/Billing - Credits/Verify tokens (import doc).bru b/memori-dashboard/Billing - Credits/Verify tokens (import doc).bru new file mode 100644 index 0000000..b6e41f6 --- /dev/null +++ b/memori-dashboard/Billing - Credits/Verify tokens (import doc).bru @@ -0,0 +1,21 @@ +meta { + name: Verify tokens (import doc) + type: http + seq: 5 +} + +post { + url: {{host}}/api/verify-tokens + body: json + auth: inherit +} + +body:json { + { + "operation": "import_document", + "userName": "nzambello", // userName OR userID + "userID": "262103a9-527b-4a82-b399-9b18bf3c42d8", + "tenant": "www.aisuru.com", + "characters": 300 + } +} diff --git a/memori-dashboard/Billing - Credits/Verify tokens (session creation).bru b/memori-dashboard/Billing - Credits/Verify tokens (session creation).bru new file mode 100644 index 0000000..b33b8cc --- /dev/null +++ b/memori-dashboard/Billing - Credits/Verify tokens (session creation).bru @@ -0,0 +1,20 @@ +meta { + name: Verify tokens (session creation) + type: http + seq: 6 +} + +post { + url: {{host}}/api/verify-tokens + body: json + auth: inherit +} + +body:json { + { + "operation": "session_creation", + "userName": "nzambello", // userName OR userID + "userID": "262103a9-527b-4a82-b399-9b18bf3c42d8", + "tenant": "www.aisuru.com" + } +} diff --git a/memori-dashboard/Billing - Credits/folder.bru b/memori-dashboard/Billing - Credits/folder.bru new file mode 100644 index 0000000..5e9a3c9 --- /dev/null +++ b/memori-dashboard/Billing - Credits/folder.bru @@ -0,0 +1,3 @@ +meta { + name: Billing / Credits +} diff --git a/memori-dashboard/Image resize.bru b/memori-dashboard/Image resize.bru new file mode 100644 index 0000000..9faea9f --- /dev/null +++ b/memori-dashboard/Image resize.bru @@ -0,0 +1,65 @@ +meta { + name: Image resize + type: http + seq: 2 +} + +get { + url: https://imgresize.memori.ai/api/imgresize/:width/:height/:url?format={{format}}&fit={{fit}} + body: none + auth: inherit +} + +params:query { + format: {{format}} + fit: {{fit}} +} + +params:path { + width: 200 + height: 200 + url: https%3A%2F%2Fmemori.ai%2Flogo.png +} + +vars:pre-request { + format: png + fit: inside +} + +docs { + # Image resize API + + Endpoint: [https://imgresize.memori.ai](https://imgresize.memori.ai). + + Repo: [https://code.nzambello.dev/nzambello/resize-img-api](https://code.nzambello.dev/nzambello/resize-img-api). + + # resize-img-api + + The structure of the API path is: + + ``` + /api/imgresize/:width/:height/:url + ``` + + Where `:width` and `:height` can be numbers in pixels or `auto`. + + The `:url` is the URL of the image to be resized and should be URL encoded, which can be done in JS with `encodeURIComponent`(). See [MDN ref](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/encodeURIComponent). + + Example encoded URL for [https://memori.ai/logo.png](https://memori.ai/logo.png): + + ``` + https%3A%2F%2Fmemori.ai%2Flogo.png + ``` + + Then call the API as, for example: + + ``` + /api/imgresize/200/200/https%3A%2F%2Fmemori.ai%2Flogo.png + ``` + + You can also specify a format using the querystring `?format=` and indicating one of the following: `avif`, `gif`, `heif`, `jpeg`, `jpg`, `pdf`, `png`, `svg`, `tiff`, `webp`. (Note: Experimental!) + + Another querystring parameter is `fit` which can be `cover`, `contain`, `fill`, `inside`, `outside` (Ref: [sharp](https://sharp.pixelplumbing.com/api-resize#resize)). Default is `inside`. + + +} diff --git a/memori-dashboard/Internal/Azure Speech Key.bru b/memori-dashboard/Internal/Azure Speech Key.bru new file mode 100644 index 0000000..2980a4b --- /dev/null +++ b/memori-dashboard/Internal/Azure Speech Key.bru @@ -0,0 +1,11 @@ +meta { + name: Azure Speech Key + type: http + seq: 9 +} + +get { + url: {{host}}/api/speechkey + body: none + auth: inherit +} diff --git a/memori-dashboard/Internal/ConvertAPI Token.bru b/memori-dashboard/Internal/ConvertAPI Token.bru new file mode 100644 index 0000000..3bb92f8 --- /dev/null +++ b/memori-dashboard/Internal/ConvertAPI Token.bru @@ -0,0 +1,29 @@ +meta { + name: ConvertAPI Token + type: http + seq: 5 +} + +get { + url: {{host}}/api/convertapi-token + body: none + auth: inherit +} + +docs { + # Generate ConvertAPI token + + Calls ConvertAPI to generate a token + [https://www.convertapi.com/](https://www.convertapi.com/ + ) + + Example: + + ```sh + http http://localhost:3000/api/convertapi-token + ``` + + Ref: [https://www.convertapi.com/doc/auth](https://www.convertapi.com/doc/auth) + + Returns: Token string +} diff --git a/memori-dashboard/Internal/Feedback.bru b/memori-dashboard/Internal/Feedback.bru new file mode 100644 index 0000000..b3821f4 --- /dev/null +++ b/memori-dashboard/Internal/Feedback.bru @@ -0,0 +1,28 @@ +meta { + name: Feedback + type: http + seq: 6 +} + +post { + url: {{host}}/api/feedback + body: json + auth: inherit +} + +headers { + user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 +} + +body:json { + { + "userID": "", + "userEmail": "", + "type": "bug", + "subject": "", + "text": "", + "tenant": "www.aisuru.com", + "captchaToken": "", + "userToken": "" + } +} diff --git a/memori-dashboard/Internal/Functions middleware.bru b/memori-dashboard/Internal/Functions middleware.bru new file mode 100644 index 0000000..054c2ab --- /dev/null +++ b/memori-dashboard/Internal/Functions middleware.bru @@ -0,0 +1,15 @@ +meta { + name: Functions middleware + type: http + seq: 1 +} + +get { + url: {{host}}/api/functions-middleware/:webhookUrl + body: none + auth: inherit +} + +params:path { + webhookUrl: +} diff --git a/memori-dashboard/Internal/Intents middleware.bru b/memori-dashboard/Internal/Intents middleware.bru new file mode 100644 index 0000000..c0c7960 --- /dev/null +++ b/memori-dashboard/Internal/Intents middleware.bru @@ -0,0 +1,15 @@ +meta { + name: Intents middleware + type: http + seq: 3 +} + +get { + url: {{host}}/api/webhook-middleware/:webhookUrl + body: none + auth: inherit +} + +params:path { + webhookUrl: +} diff --git a/memori-dashboard/Internal/Mail to followers.bru b/memori-dashboard/Internal/Mail to followers.bru new file mode 100644 index 0000000..ae4db87 --- /dev/null +++ b/memori-dashboard/Internal/Mail to followers.bru @@ -0,0 +1,30 @@ +meta { + name: Mail to followers + type: http + seq: 4 +} + +post { + url: {{host}}/api/mail2followers/:sessionID + body: json + auth: inherit +} + +params:path { + sessionID: +} + +headers { + user-agent: Mozilla/5.0 (Macintosh; Intel Mac OS X 10.15; rv:136.0) Gecko/20100101 Firefox/136.0 +} + +body:json { + { + "userEmail": "{{email}}", + "subject": "{{subject}}", + "message": "{{message}}", + "to": "{{to}}", + "twinName": "{{twinName}}", + "publicPageURL": "{{publicPageURL}}" + } +} diff --git a/memori-dashboard/Internal/Public page manifest.bru b/memori-dashboard/Internal/Public page manifest.bru new file mode 100644 index 0000000..35e6011 --- /dev/null +++ b/memori-dashboard/Internal/Public page manifest.bru @@ -0,0 +1,16 @@ +meta { + name: Public page manifest + type: http + seq: 2 +} + +get { + url: {{host}}/api/:userName/:memoriName/manifest.json + body: none + auth: inherit +} + +params:path { + userName: nzambello + memoriName: Nicola +} diff --git a/memori-dashboard/Internal/folder.bru b/memori-dashboard/Internal/folder.bru new file mode 100644 index 0000000..702931e --- /dev/null +++ b/memori-dashboard/Internal/folder.bru @@ -0,0 +1,3 @@ +meta { + name: Internal +} diff --git a/memori-dashboard/Internal/robots.txt (allowed).bru b/memori-dashboard/Internal/robots.txt (allowed).bru new file mode 100644 index 0000000..0351701 --- /dev/null +++ b/memori-dashboard/Internal/robots.txt (allowed).bru @@ -0,0 +1,15 @@ +meta { + name: robots.txt (allowed) + type: http + seq: 9 +} + +get { + url: {{host}}/api/robots.txt + body: none + auth: inherit +} + +headers { + host: www.aisuru.com +} diff --git a/memori-dashboard/Internal/robots.txt (not allowed).bru b/memori-dashboard/Internal/robots.txt (not allowed).bru new file mode 100644 index 0000000..dbf8cb8 --- /dev/null +++ b/memori-dashboard/Internal/robots.txt (not allowed).bru @@ -0,0 +1,15 @@ +meta { + name: robots.txt (not allowed) + type: http + seq: 8 +} + +get { + url: {{host}}/api/robots.txt + body: none + auth: inherit +} + +headers { + host: test.aclambda.online +} diff --git a/memori-dashboard/Link preview.bru b/memori-dashboard/Link preview.bru new file mode 100644 index 0000000..a75b2b4 --- /dev/null +++ b/memori-dashboard/Link preview.bru @@ -0,0 +1,44 @@ +meta { + name: Link preview + type: http + seq: 1 +} + +get { + url: {{host}}/api/linkpreview/:url + body: none + auth: inherit +} + +params:path { + url: https%3A%2F%2Fmemori.ai +} + +docs { + # Get link preview info + + Uses [nzambello/link-previewer](https://github.com/nzambello/link-previewer). + + Example: + ```sh + http http://localhost:3000/api/linkpreview/https%3A%2F%2Frawmaterial.it%2Fen + ``` + + Returns: + ```json + { + "description": "RawMaterial is an innovative and emerging company at the forefront of providing sustainable web solutions and environmental consulting services for a sustainable, inclusive, equitable and community future.", + "favicon": "https://rawmaterial.it/favicon.ico", + "image": "https://rawmaterial.it/en/@@images/33b46076-8aca-430e-bdf5-4c6154d4a3a7.png", + "imageHeight": 295, + "imageWidth": 800, + "images": [ + "https://rawmaterial.it/it/risorse/plone-logo.svg/@@images/image/icon", + "https://rawmaterial.it/it/risorse/rawmaterial-it.png/@@images/image/icon", + "https://rawmaterial.it/it/risorse/logo_treedom_friend_green.png/@@images/image/icon" + ], + "title": "RawMaterial", + "videos": [] + } + ``` +} diff --git a/memori-dashboard/Tenant Data.bru b/memori-dashboard/Tenant Data.bru new file mode 100644 index 0000000..7184000 --- /dev/null +++ b/memori-dashboard/Tenant Data.bru @@ -0,0 +1,15 @@ +meta { + name: Tenant Data + type: http + seq: 4 +} + +get { + url: {{host}}/api/tenant/:tenantName + body: none + auth: inherit +} + +params:path { + tenantName: www.aisuru.com +} diff --git a/memori-dashboard/Virtual spaces - VR support/Media HTML viewer.bru b/memori-dashboard/Virtual spaces - VR support/Media HTML viewer.bru new file mode 100644 index 0000000..80835af --- /dev/null +++ b/memori-dashboard/Virtual spaces - VR support/Media HTML viewer.bru @@ -0,0 +1,16 @@ +meta { + name: Media HTML viewer + type: http + seq: 1 +} + +get { + url: {{host}}/api/media?mimeType=image/png&url=https://memori.ai/logo.png + body: none + auth: inherit +} + +params:query { + mimeType: image/png + url: https://memori.ai/logo.png +} diff --git a/memori-dashboard/Virtual spaces - VR support/Privacy Page VR.bru b/memori-dashboard/Virtual spaces - VR support/Privacy Page VR.bru new file mode 100644 index 0000000..b7b75b2 --- /dev/null +++ b/memori-dashboard/Virtual spaces - VR support/Privacy Page VR.bru @@ -0,0 +1,15 @@ +meta { + name: Privacy Page VR + type: http + seq: 2 +} + +get { + url: {{host}}/api/privacy_vr?lang=it + body: none + auth: inherit +} + +params:query { + lang: it +} diff --git a/memori-dashboard/Virtual spaces - VR support/VR Tutorial.bru b/memori-dashboard/Virtual spaces - VR support/VR Tutorial.bru new file mode 100644 index 0000000..5e919bd --- /dev/null +++ b/memori-dashboard/Virtual spaces - VR support/VR Tutorial.bru @@ -0,0 +1,19 @@ +meta { + name: VR Tutorial + type: http + seq: 3 +} + +get { + url: {{host}}/api/vrtutorial?lang=it + body: none + auth: inherit +} + +params:query { + lang: it +} + +headers { + accept-language: it-IT +} diff --git a/memori-dashboard/Virtual spaces - VR support/VR vuplex.bru b/memori-dashboard/Virtual spaces - VR support/VR vuplex.bru new file mode 100644 index 0000000..52c6b65 --- /dev/null +++ b/memori-dashboard/Virtual spaces - VR support/VR vuplex.bru @@ -0,0 +1,16 @@ +meta { + name: VR vuplex + type: http + seq: 4 +} + +get { + url: {{host}}/api/vrvuplex?tenant=www.aisuru.com&lang=it + body: none + auth: inherit +} + +params:query { + tenant: www.aisuru.com + lang: it +} diff --git a/memori-dashboard/Virtual spaces - VR support/folder.bru b/memori-dashboard/Virtual spaces - VR support/folder.bru new file mode 100644 index 0000000..247bfd7 --- /dev/null +++ b/memori-dashboard/Virtual spaces - VR support/folder.bru @@ -0,0 +1,3 @@ +meta { + name: Virtual spaces / VR support +} diff --git a/memori-dashboard/Widget support/Lexicon map.bru b/memori-dashboard/Widget support/Lexicon map.bru new file mode 100644 index 0000000..e65cad9 --- /dev/null +++ b/memori-dashboard/Widget support/Lexicon map.bru @@ -0,0 +1,11 @@ +meta { + name: Lexicon map + type: http + seq: 1 +} + +get { + url: {{host}}/api/lexiconmap + body: none + auth: inherit +} diff --git a/memori-dashboard/Widget support/folder.bru b/memori-dashboard/Widget support/folder.bru new file mode 100644 index 0000000..353454b --- /dev/null +++ b/memori-dashboard/Widget support/folder.bru @@ -0,0 +1,3 @@ +meta { + name: Widget support +} diff --git a/memori-dashboard/bruno.json b/memori-dashboard/bruno.json new file mode 100644 index 0000000..24ff483 --- /dev/null +++ b/memori-dashboard/bruno.json @@ -0,0 +1,9 @@ +{ + "version": "1", + "name": "Memori Dashboard API", + "type": "collection", + "ignore": [ + "node_modules", + ".git" + ] +} \ No newline at end of file diff --git a/memori-dashboard/environments/development.bru b/memori-dashboard/environments/development.bru new file mode 100644 index 0000000..529e6ae --- /dev/null +++ b/memori-dashboard/environments/development.bru @@ -0,0 +1,3 @@ +vars { + host: http://localhost:3000 +} diff --git a/memori-dashboard/environments/production.bru b/memori-dashboard/environments/production.bru new file mode 100644 index 0000000..a2c6896 --- /dev/null +++ b/memori-dashboard/environments/production.bru @@ -0,0 +1,3 @@ +vars { + host: https://www.aisuru.com +} diff --git a/memori-dashboard/environments/staging.bru b/memori-dashboard/environments/staging.bru new file mode 100644 index 0000000..c60f8e3 --- /dev/null +++ b/memori-dashboard/environments/staging.bru @@ -0,0 +1,3 @@ +vars { + host: https://aisuru-staging.aclambda.online +} diff --git a/memori-dashboard/environments/wiit.bru b/memori-dashboard/environments/wiit.bru new file mode 100644 index 0000000..af75cfa --- /dev/null +++ b/memori-dashboard/environments/wiit.bru @@ -0,0 +1,3 @@ +vars { + host: https://ai.wiit-cloud.io +}