| FazBrowse GitHub Viewer | Trending | | Home |
| Tools: [Download Repo ZIP] [Original HTTPS Page] |
1 parent e4b5b6e commit ca5fe39
52 files changed
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -66,7 +66,7 @@ ToolJet is an **open-source low-code framework** to build and deploy internal to | |||
| 66 | 66 | ## Quickstart | |
| 67 | 67 | The easiest way to get started with ToolJet is by creating a [ToolJet Cloud](https://tooljet.com) account. ToolJet Cloud offers a hosted solution of ToolJet. If you want to self-host ToolJet, kindly proceed to [deployment documentation](https://docs.tooljet.com/docs/setup/architecture). | |
| 68 | 68 | ||
| 69 | - You can deploy ToolJet on Heroku for free using the one-click-deployment button only untill **28th November 2022**. | ||
| 69 | + You can deploy ToolJet on Heroku for free using the one-click-deployment button only until **28th November 2022**. | ||
| 70 | 70 | <p align="center"> | |
| 71 | 71 | <a href="https://heroku.com/deploy?template=https://github.com/tooljet/tooljet/tree/main"> | |
| 72 | 72 | <img src="https://www.herokucdn.com/deploy/button.svg" /> | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,11 +14,11 @@ | |||
| 14 | 14 | "value": "production" | |
| 15 | 15 | }, | |
| 16 | 16 | "TOOLJET_HOST": { | |
| 17 | - "description": "Public URL of ToolJet installtion. This is usually https://<app-name-in-first-step>.herokuapp.com", | ||
| 17 | + "description": "Public URL of ToolJet installation. This is usually https://<app-name-in-first-step>.herokuapp.com", | ||
| 18 | 18 | "value": "https://<app-name-in-first-step>.herokuapp.com" | |
| 19 | 19 | }, | |
| 20 | 20 | "TOOLJET_SERVER_URL": { | |
| 21 | - "description": "URL of ToolJet server installtion. (This is same as the TOOLJET_HOST for Heroku deployments)", | ||
| 21 | + "description": "URL of ToolJet server installation. (This is same as the TOOLJET_HOST for Heroku deployments)", | ||
| 22 | 22 | "value": "https://<app-name-in-first-step>.herokuapp.com" | |
| 23 | 23 | }, | |
| 24 | 24 | "LOCKBOX_MASTER_KEY": { | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -54,7 +54,7 @@ export default class Create extends Command { | |||
| 54 | 54 | if (!(fs.existsSync(pluginsPath) && fs.existsSync(docsPath) && fs.existsSync(defaultTemplates))) { | |
| 55 | 55 | this.log( | |
| 56 | 56 | '\x1b[41m%s\x1b[0m', | |
| 57 | - 'Error : plugins, docs or plugins/_templates directory missing, make sure that you are runing this command in Tooljet directory' | ||
| 57 | + 'Error : plugins, docs or plugins/_templates directory missing, make sure that you are running this command in Tooljet directory' | ||
| 58 | 58 | ); | |
| 59 | 59 | process.exit(1); | |
| 60 | 60 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -26,7 +26,7 @@ export default class Delete extends Command { | |||
| 26 | 26 | if (!(fs.existsSync(pluginsPath) && fs.existsSync(pluginPath) && fs.existsSync(pluginDocPath))) { | |
| 27 | 27 | this.log( | |
| 28 | 28 | '\x1b[41m%s\x1b[0m', | |
| 29 | - 'Error : Plugin not found, make sure that you are runing this command in Tooljet directory' | ||
| 29 | + 'Error : Plugin not found, make sure that you are running this command in Tooljet directory' | ||
| 30 | 30 | ); | |
| 31 | 31 | process.exit(1); | |
| 32 | 32 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -21,7 +21,7 @@ export default class Install extends Command { | |||
| 21 | 21 | if (!fs.existsSync(pluginPath)) { | |
| 22 | 22 | this.log( | |
| 23 | 23 | '\x1b[41m%s\x1b[0m', | |
| 24 | - 'Error : Plugin not found, make sure that you are runing this command in Tooljet directory' | ||
| 24 | + 'Error : Plugin not found, make sure that you are running this command in Tooljet directory' | ||
| 25 | 25 | ); | |
| 26 | 26 | process.exit(1); | |
| 27 | 27 | } | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -3,7 +3,7 @@ export const datePickerSelector = { | |||
| 3 | 3 | calendarYearSelect: ".react-datepicker__year-select", | |
| 4 | 4 | calendarMonthSelect: ".react-datepicker__month-select", | |
| 5 | 5 | calendarDaySelect: ".react-datepicker__day", | |
| 6 | - calenderTimeInput: "input.react-datepicker-time__input", | ||
| 6 | + calendarTimeInput: "input.react-datepicker-time__input", | ||
| 7 | 7 | validationFeedbackMessage: "[data-cy=date-picker-invalid-feedback]", | |
| 8 | 8 | calendarMonth: "[aria-label*='month']", | |
| 9 | 9 | calendarDayOutsideMonth: "[class*='outside-month']", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -20,7 +20,7 @@ export const dashboardText = { | |||
| 20 | 20 | iconText: { | |
| 21 | 21 | appsIcon: "apps", | |
| 22 | 22 | businessIcon: "business", | |
| 23 | - calenderIcon: "calender", | ||
| 23 | + calendarIcon: "calendar", | ||
| 24 | 24 | chartBarIcon: "Chart bar", | |
| 25 | 25 | codeIcon: "Code", | |
| 26 | 26 | cpuIcon: "cpu", | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -43,7 +43,7 @@ export const selectAndVerifyTime = (widgetName, time) => { | |||
| 43 | 43 | .click() | |
| 44 | 44 | .trigger("mouseleave") | |
| 45 | 45 | .within(() => { | |
| 46 | - cy.get(datePickerSelector.calenderTimeInput) | ||
| 46 | + cy.get(datePickerSelector.calendarTimeInput) | ||
| 47 | 47 | .scrollIntoView() | |
| 48 | 48 | .focus() | |
| 49 | 49 | .type(`${time}`) | |
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -13,8 +13,8 @@ spec: | |||
| 13 | 13 | - type: Resource | |
| 14 | 14 | resource: | |
| 15 | 15 | name: cpu | |
| 16 | - targetAverageValue: {{ .Values.apps.tooljet.hpa.threshhold.cpu }} | ||
| 16 | + targetAverageValue: {{ .Values.apps.tooljet.hpa.threshold.cpu }} | ||
| 17 | 17 | - type: Resource | |
| 18 | 18 | resource: | |
| 19 | 19 | name: memory | |
| 20 | - targetAverageValue: {{ .Values.apps.tooljet.hpa.threshhold.ram }} | ||
| 20 | + targetAverageValue: {{ .Values.apps.tooljet.hpa.threshold.ram }} | ||
| Original file line number | Diff line number | Diff line change | |
|---|---|---|---|
@@ -14,7 +14,7 @@ apps: | |||
| 14 | 14 | hpa: | |
| 15 | 15 | min: 1 | |
| 16 | 16 | max: 1 | |
| 17 | - threshhold: | ||
| 17 | + threshold: | ||
| 18 | 18 | cpu: 0.75 | |
| 19 | 19 | ram: 768Mi | |
| 20 | 20 | secret: | |
| Back | FazBrowse Home | New Git URL |
0 commit comments