Skip to content

Commit

Permalink
v1.9.37
Browse files Browse the repository at this point in the history
  • Loading branch information
ly180236 committed Aug 7, 2024
0 parents commit 7b6e22a
Show file tree
Hide file tree
Showing 9,587 changed files with 1,304,467 additions and 0 deletions.
The diff you're trying to view is too large. We only load the first 3000 changed files.
25 changes: 25 additions & 0 deletions .deepsource.toml
Original file line number Diff line number Diff line change
@@ -0,0 +1,25 @@
version = 1

test_patterns = ["**/test/**"]

exclude_patterns = [
"static/**",
"deploy/**",
"contributions/**"
]

[[analyzers]]
name = "javascript"
enabled = true

[analyzers.meta]
plugins = ["react"]
environment = [
"nodejs",
"browser",
"cypress"
]
dialect = "typescript"
dependency_file_paths = [
'/app/client/'
]
5 changes: 5 additions & 0 deletions .dockerignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,5 @@
*
!./app/server/dist
!./app/client/build
!./app/client/packages/rts
!./deploy/docker
13 changes: 13 additions & 0 deletions .editorconfig
Original file line number Diff line number Diff line change
@@ -0,0 +1,13 @@
# https://EditorConfig.org
root = true

[*]
charset = utf-8
end_of_line = lf
indent_style = space
indent_size = 2
insert_final_newline = true
trim_trailing_whitespace = true

[{*.java,pom.xml,*.py}]
indent_size = 4
69 changes: 69 additions & 0 deletions .env.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
# Rename this to .env

# Sentry
APPSMITH_SENTRY_DSN=

# Smart look
APPSMITH_SMART_LOOK_ID=

# Google OAuth
APPSMITH_OAUTH2_GOOGLE_CLIENT_ID=
APPSMITH_OAUTH2_GOOGLE_CLIENT_SECRET=

# Github OAuth
APPSMITH_OAUTH2_GITHUB_CLIENT_ID=
APPSMITH_OAUTH2_GITHUB_CLIENT_SECRET=

# Form Login/Signup
APPSMITH_FORM_LOGIN_DISABLED=
APPSMITH_SIGNUP_DISABLED=

# Segment
APPSMITH_SEGMENT_KEY=

# RapidAPI
APPSMITH_RAPID_API_KEY_VALUE=
APPSMITH_MARKETPLACE_ENABLED=


# Algolia Search (Docs)
APPSMITH_ALGOLIA_API_ID=
APPSMITH_ALGOLIA_API_KEY=
APPSMITH_ALGOLIA_SEARCH_INDEX_NAME=

#Client log level (debug | error)
APPSMITH_CLIENT_LOG_LEVEL=

# Email server
APPSMITH_MAIL_ENABLED=
APPSMITH_MAIL_HOST=
APPSMITH_MAIL_PORT=
APPSMITH_MAIL_USERNAME=
APPSMITH_MAIL_PASSWORD=

# Email server feature toggles
# true | false values
APPSMITH_MAIL_SMTP_AUTH=
APPSMITH_MAIL_SMTP_TLS_ENABLED=

# Disable all telemetry
# Note: This only takes effect in self-hosted scenarios.
# Please visit https://docs.appsmith.com/product/telemetry to read more about anonymized data collected by Appsmith
# APPSMITH_DISABLE_TELEMETRY=false

#APPSMITH_SENTRY_DSN=
#APPSMITH_SENTRY_ENVIRONMENT=

# Configure cloud services
# APPSMITH_CLOUD_SERVICES_BASE_URL="https://release-cs.appsmith.com"

# Google Recaptcha Config
APPSMITH_RECAPTCHA_SITE_KEY=
APPSMITH_RECAPTCHA_SECRET_KEY=
APPSMITH_RECAPTCHA_ENABLED=

# Intercom
APPSMITH_DISABLE_INTERCOM=

# echarts baidu map
APPSMITH_BMAP_AK=
74 changes: 74 additions & 0 deletions .github/ISSUE_TEMPLATE/--bug-report.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,74 @@
name: 🐞 Bug report
description: Create a bug report to help us improve Appsmith
title: "[Bug]: "
labels: [Bug, Needs Triaging]
assignees:
- Nikhil-Nandagopal
- pranavkanade
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to fill out this bug report! Please fill the form in English
- type: checkboxes
attributes:
label: Is there an existing issue for this?
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Description
description: A concise description of what you're experiencing and what you expect.
placeholder: |
When I do <X>, <Y> happens and I see the error message attached below:
```...```
What I expect is <Z>
validations:
required: true
- type: textarea
attributes:
label: Steps To Reproduce
description: Add steps to reproduce this behaviour, include console / network logs & videos
placeholder: |
1. Go to '...'
2. Click on '....'
3. Scroll down to '....'
4. See error
validations:
required: true
- type: input
id: app
attributes:
label: Public Sample App
description: "Share a public sample application that reproduces the bug using our mock databases if possible"
placeholder: "https://app.appsmith.com/applications/61e022f1eb0501052b9fa205/pages/61e02308eb0501052b9fa20c"
validations:
required: false
- type: dropdown
id: environment
attributes:
label: Environment
description: "Environment where the issue is reproducible"
options:
- Production
- Release
- Deploy Preview
validations:
required: true
- type: input
id: video
attributes:
label: Issue video log
description: "Share a loom video recording of how the issue can be reporduced"
placeholder: "https://www.loom.com/share/d54e04bc68e24798..."
validations:
required: false
- type: input
id: version
attributes:
label: Version
description: "The version of your Appsmith Instance"
placeholder: "Cloud / Self Hosted - 1.6.6"
validations:
required: true
60 changes: 60 additions & 0 deletions .github/ISSUE_TEMPLATE/--epic.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,60 @@
name: 📓 Epic
description: A large planned scope of work for the quarter
title: "[Epic]: "
labels: [Epic]
assignees:
- Nikhil-Nandagopal
body:
- type: textarea
id: objective
attributes:
label: Objective
description: Here you fill in the objective of the product/feature that you are writing about.
validations:
required: true
- type: textarea
attributes:
label: Success Metrics
description: List of all metrics you are tracking and the desired goal.
value: |
| Metric |
| -------------- |
| Customer satisfaction score increases |
| Decrease churn rate down to 30% |
validations:
required: true
- type: textarea
attributes:
label: Prioritised User Stories
value: |
| User Story |
| ------------- |
| e.g. as a user, I want to be able to access the platform via mobile phone |
| e.g as a user, I want to be able to communicate with the other members on the canvas |
validations:
required: false
- type: input
attributes:
label: Developer Handoff Document in Figma
description: Link to the developer Handoff Document.
validations:
required: false
- type: input
attributes:
label: Test Plan
description: Link to the Test Plan Document.
validations:
required: false
- type: textarea
attributes:
label: RACI matrix
description: Please fill the table below.
value: |
| Role | People |
| ------------- | ------------- |
| Responsible | |
| Accountable | |
| Consulted | @Nikhil-Nandagopal, @mohanarpit, @areyabhishek|
| Informed | |
validations:
required: true
30 changes: 30 additions & 0 deletions .github/ISSUE_TEMPLATE/--feature-request.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,30 @@
name: 🛠️ Feature request
description: Suggest an idea to improve appsmith
title: "[Feature]: "
labels: [Enhancement]
assignees:
- Nikhil-Nandagopal
body:
- type: markdown
attributes:
value: |
Thanks for taking the time to request a feature for Appsmith!
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue related to this feature request already exists.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: Summary
description: One paragraph description of the feature.
validations:
required: true
- type: textarea
attributes:
label: Why should this be worked on?
description: A concise description of the problems or use cases for this feature request.
validations:
required: true
20 changes: 20 additions & 0 deletions .github/ISSUE_TEMPLATE/--task.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,20 @@
name: 📝 Task
description: Create a task for the team to work on
title: "[Task]: "
labels: [Task]
body:
- type: checkboxes
attributes:
label: Is there an existing issue for this?
description: Please search to see if an issue related to this already exists.
options:
- label: I have searched the existing issues
required: true
- type: textarea
attributes:
label: SubTasks
placeholder: |
- Sub Task 1
- Sub Task 2
validations:
required: false
Loading

0 comments on commit 7b6e22a

Please sign in to comment.