PromucFlow_constructor/app/server
Trisha Anand 5197b17d8c
Bug Fix : Reading the datasource configuration incorrectly from actionDTO instead of datasource object. (#1415)
* Bug Fix : Reading the datasource configuration incorrectly from actionDTO instead of datasource object.

* Added test case to assert that datasource configuration and action configurations are not null when action execute is called.
2020-10-27 15:23:25 +05:30
..
appsmith-interfaces Adding basic structure for plugin integrating with Redis (#1085) 2020-10-22 13:26:58 +05:30
appsmith-plugins Adding microsoft SQL server plugin integration (#1374) 2020-10-23 20:36:45 +05:30
appsmith-server Bug Fix : Reading the datasource configuration incorrectly from actionDTO instead of datasource object. (#1415) 2020-10-27 15:23:25 +05:30
envs
mongo-seed
scripts
.gitignore
build.sh
buildpack-run.sh
docker-compose.yml
Dockerfile
entrypoint.sh
pom.xml
Procfile
README.md Adding dummy commit to trigger build 2020-10-16 13:58:42 +05:30
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:

  1. Compile the code
  2. Generate the jars for server & plugins
  3. Copy them into the dist directory

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.