PromucFlow_constructor/app/server
2020-10-09 15:21:28 +05:30
..
appsmith-interfaces Datasource structure support for MongoDB (#641) 2020-10-01 10:41:29 +05:30
appsmith-plugins Datasource structure support for MongoDB (#641) 2020-10-01 10:41:29 +05:30
appsmith-server Only mark applications as example applications if the application id exists in the template configuration. (#1093) 2020-10-09 15:21:28 +05:30
envs Adding more details to Contributing.md for server compilation (#582) 2020-09-19 12:56:42 +05:30
mongo-seed
scripts
.gitignore
build.sh
buildpack-run.sh
docker-compose.yml
Dockerfile
entrypoint.sh
pom.xml
Procfile
README.md Removing the keep-alive ping check for CI builds (#565) 2020-09-18 13:13:40 +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.