PromucFlow_constructor/app/server
Nidhi de5003a98e
Added type parameter for REST API plugin, and changes for no auth (#2438)
* Added type parameter for REST API plugin, and changes for no auth

* Removed logs

* Converted to reactive
2021-01-05 17:59:50 +05:30
..
.run Added IntelliJ run configuration for an easier getting started experience for contributors (#1944) 2020-11-27 14:31:09 +05:30
appsmith-interfaces Add migration to set isEncrypted field where missing (#2332) 2020-12-23 18:07:35 +05:30
appsmith-plugins Added type parameter for REST API plugin, and changes for no auth (#2438) 2021-01-05 17:59:50 +05:30
appsmith-server Increased logs to debug future connection leaks. (#2437) 2021-01-05 15:34:55 +05:30
envs Change Sentry log 'environment' tag value. (#1789) 2020-11-19 17:29:48 +05:30
mongo-seed
scripts
.gitignore
build.sh
buildpack-run.sh
docker-compose.yml
Dockerfile Disable instance ping check when the disableTelemetry flag is set (#1776) 2020-11-19 08:54:03 +05:30
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:

  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.