PromucFlow_constructor/app/server
Sumit Kumar e5586a590a
fix placeholderText label in form.json files (#3331)
fix placeholderText label in form.json files
2021-03-03 09:33:02 +05:30
..
.run
appsmith-interfaces Requests preparation by plugins instead of ActionService (#3159) 2021-03-02 10:58:46 +05:30
appsmith-plugins fix placeholderText label in form.json files (#3331) 2021-03-03 09:33:02 +05:30
appsmith-server Requests preparation by plugins instead of ActionService (#3159) 2021-03-02 10:58:46 +05:30
envs
mongo-seed
scripts Use IPv4 on WSL machines (#2729) 2021-01-28 12:08:44 +05:30
.gitignore Include version information when building Docker images for server and client (#2200) 2021-01-12 18:15:15 +05:30
build.sh
buildpack-run.sh
docker-compose.yml
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
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.