* add elasticSearchPlugin * Fix container startup in tests * Add elasticsearch dependency * Get plugin to a base working state * Add templates and tests for all Document APIs * Add support for bulk queries * Add test and template for bulk operations * Use rich form for action configuration * Add test API for ElasticSearch * Use rich form's values for plugin execution * Add authorization header support * Fix tests after config object use changes * Add test for bulk requests with nd-json body * Remove templates and minor refactoring * Fix potential NPE with null body Co-authored-by: Trisha Anand <trisha@appsmith.com> * Add datasource validation for endpoint * Wrap errors in AppsmithPluginException Co-authored-by: Suman Patra <spatra@akamai.com> Co-authored-by: Trisha Anand <trisha@appsmith.com> |
||
|---|---|---|
| .. | ||
| appsmith-interfaces | ||
| appsmith-plugins | ||
| appsmith-server | ||
| envs | ||
| mongo-seed | ||
| scripts | ||
| .gitignore | ||
| build.sh | ||
| buildpack-run.sh | ||
| docker-compose.yml | ||
| Dockerfile | ||
| entrypoint.sh | ||
| pom.xml | ||
| Procfile | ||
| README.md | ||
| system.properties | ||
Appsmith Server
This is the server-side repo for the Appsmith framework.
How to build
$ ./build.sh <arguments>
For example:
$ ./build.sh -DskipTests
This script will perform the following steps:
- Compile the code
- Generate the jars for server & plugins
- Copy them into the
distdirectory
How to run
$ cd ./dist
$ java -jar -Dspring.profiles.active=$env server-1.0-SNAPSHOT.jar
How to test
In order to test the code, you can run the following command:
mvn -B clean package
Please make sure that you have a local Redis instance running for the test cases. During tests, the MongoDB is run in-memory. So you don't require to be running a local MongoDB instance.