Fix/deploy script (#111)
* Added information to setup domain * Fixed incorrect var reference * Updated documentation message * Updated env template * updated template * removed debug echo * Updated Script * Updated Text Co-authored-by: Nikhil Nandagopal <nikhil@appsmith.com>
This commit is contained in:
parent
dad70efcbd
commit
70c4dd5964
|
|
@ -136,7 +136,7 @@ export const AUTOFIT_COLUMN = "Autofit column";
|
|||
export const TIMEZONE = "Timezone";
|
||||
export const ENABLE_TIME = "Enable Time";
|
||||
|
||||
export const BACK_TO_EDITOR = "Back to Editor";
|
||||
export const EDIT_APP = "Edit App";
|
||||
|
||||
export const LIGHTNING_MENU_DATA_API = "Use data from an API";
|
||||
export const LIGHTNING_MENU_DATA_QUERY = "Use data from a Query";
|
||||
|
|
|
|||
|
|
@ -2,7 +2,7 @@ import React from "react";
|
|||
import styled from "styled-components";
|
||||
import StyledHeader from "components/designSystems/appsmith/StyledHeader";
|
||||
import Button from "components/editorComponents/Button";
|
||||
import { BACK_TO_EDITOR } from "constants/messages";
|
||||
import { EDIT_APP } from "constants/messages";
|
||||
import { isPermitted } from "pages/Applications/permissionHelpers";
|
||||
const HeaderWrapper = styled(StyledHeader)`
|
||||
position: fixed;
|
||||
|
|
@ -37,7 +37,7 @@ export const AppViewerHeader = (props: AppViewerHeaderProps) => {
|
|||
intent="primary"
|
||||
icon="chevron-left"
|
||||
iconAlignment="left"
|
||||
text={BACK_TO_EDITOR}
|
||||
text={EDIT_APP}
|
||||
filled
|
||||
/>
|
||||
)}
|
||||
|
|
|
|||
|
|
@ -118,17 +118,18 @@ class MapWidget extends BaseWidget<MapWidgetProps, WidgetState> {
|
|||
{!google.enabled && (
|
||||
<DisabledContainer>
|
||||
<h1>{"Map Widget disabled"}</h1>
|
||||
<p>{"Map widget requires a Google Maps API Key"}</p>
|
||||
<p>
|
||||
{"Map widget requires a Google Maps "}
|
||||
{"See our"}
|
||||
<a
|
||||
target="_blank"
|
||||
rel="noopener noreferrer"
|
||||
href="https://developers.google.com/maps/documentation/javascript/get-api-key"
|
||||
href="https://docs.appsmith.com/third-party-services/google-maps"
|
||||
>
|
||||
API Key
|
||||
{"documentation"}
|
||||
</a>
|
||||
{"to configure API Keys"}
|
||||
</p>
|
||||
<p>{"Refer our Docs to configure API Keys"}</p>
|
||||
</DisabledContainer>
|
||||
)}
|
||||
{google.enabled && (
|
||||
|
|
|
|||
|
|
@ -56,7 +56,6 @@ check_os() {
|
|||
echo $os_name
|
||||
case "${os_name}" in
|
||||
\"Ubuntu*\")
|
||||
echo "In here"
|
||||
desired_os=1
|
||||
package_manager="apt-get"
|
||||
;;
|
||||
|
|
@ -108,7 +107,7 @@ echo ""
|
|||
|
||||
if [[ $desired_os -eq 0 ]];then
|
||||
echo "This script is currently meant to install Appsmith on Mac OS X | Ubuntu | RHEL | CentOS machines."
|
||||
echo "Please contact hello@appsmith.com with your OS details if you wish to extend this support"
|
||||
echo "Please contact support@appsmith.com with your OS details if you wish to extend this support"
|
||||
echo -e "Exiting for now. Bye! \U1F44B"
|
||||
exit
|
||||
fi
|
||||
|
|
|
|||
|
|
@ -10,14 +10,15 @@ cat > docker.env << EOF
|
|||
|
||||
# ***** Email **********
|
||||
APPSMITH_MAIL_ENABLED=false
|
||||
# APPSMITH_MAIL_FROM=
|
||||
# APPSMITH_REPLY_TO=
|
||||
# APPSMITH_MAIL_FROM=YOUR_VERIFIED_EMAIL_ID
|
||||
# APPSMITH_REPLY_TO=YOUR_VERIFIED_EMAIL_ID
|
||||
# APPSMITH_MAIL_HOST=
|
||||
# APPSMITH_MAIL_PASSWORD=
|
||||
# APPSMITH_MAIL_PORT=
|
||||
# APPSMITH_MAIL_SMTP_AUTH=
|
||||
# ***** Set to true if providing a TLS port ******
|
||||
# APPSMITH_MAIL_SMTP_TLS_ENABLED=
|
||||
# APPSMITH_MAIL_USERNAME=
|
||||
# APPSMITH_MAIL_PASSWORD=
|
||||
# APPSMITH_MAIL_SMTP_AUTH=true
|
||||
# ******************************
|
||||
|
||||
# ******** Google OAuth ********
|
||||
|
|
|
|||
Loading…
Reference in New Issue
Block a user