* Added action request in S3 plugin. * Added request data in Dynamo plugin * Added request in Elastic Search. * Request in Firestore. * Request added in Mongo * MsSQL request added. * Added MySQL request. * Added Postgres request. * Added redis request. * Redshift doen. * Catching AppsmithPluginExceptions at the plugin level itself to ensure that the request gets passed on as part of the result. * Fixed failing plugin test failures * Fixed AmazonS3 test failures. * WIP post analytics working * WIP : Making the request data confirm to existing analytics request data format. * Fixed the headers in the analytics body. * Migrations S3, Postgres to the accepted format for request in analytics * Updated S3 action to be the query * Migration completed for all plugins for analytics. * Removed the old analytics event. Now sending only the new one. * Ensuring all data is captured in S3 plugin request in case of error. * Minor editing of firestore to ensure that the errors get caught by the plugin itself. * Fixed test cases in Amazon S3 * Incorporated review comments. |
||
|---|---|---|
| .. | ||
| .run | ||
| 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.