PromucFlow_constructor/app/server
2021-05-07 23:22:20 +05:30
..
.run Added throwing a properly formatted error for client to consume when dynamic binding path list contains an invalid entry (#3343) 2021-03-03 17:47:35 +05:30
appsmith-interfaces Added basic authentication type to REST APIs (#4040) 2021-05-07 17:24:05 +05:30
appsmith-plugins Added basic authentication type to REST APIs (#4040) 2021-05-07 17:24:05 +05:30
appsmith-server Removed prod url from default config (#4377) 2021-05-07 23:22:20 +05:30
envs Increased default limit for webclient payload (#3718) 2021-03-26 21:34:10 +05:30
mongo-seed
scripts Use IPv4 on WSL machines (#2729) 2021-01-28 12:08:44 +05:30
.gitignore Initialise comments (#3328) 2021-04-29 16:03:51 +05:30
build.sh
buildpack-run.sh
docker-compose.yml Minor fix to create certbot directories during installation (#211) 2020-08-03 21:07:40 +05:30
Dockerfile Include version information when building Docker images for server and client (#2200) 2021-01-12 18:15:15 +05:30
entrypoint.sh
pom.xml Introducing Google Sheets Plugin (#3517) 2021-04-22 09:00:09 +05:30
Procfile
README.md [Docs] Imrove readme file in server, improve client getting started g… (#4327) 2021-05-07 16:55:48 +06:00
system.properties

Appsmith Server

This is the server-side repository for the Appsmith framework. For details on setting up your development machine, please refer to the Setup Guide

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.