PromucFlow_constructor/app/server
2021-05-10 13:51:43 +05:30
..
.run
appsmith-interfaces Bump commons-io from 2.6 to 2.7 in /app/server/appsmith-interfaces (#4172) 2021-05-09 09:49:43 +05:30
appsmith-plugins Feature: connect to mongo db via connection string URI (#4131) 2021-05-10 10:35:45 +05:30
appsmith-server Don't create new org, if the new user has been invited to one (#4380) 2021-05-10 13:51:43 +05:30
envs
mongo-seed
scripts
.gitignore Initialise comments (#3328) 2021-04-29 16:03:51 +05:30
build.sh
buildpack-run.sh
docker-compose.yml
Dockerfile
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.