* [Docs] Imrove readme file in server, improve client getting started guide * -updated the ClientSetup readme as per PR comment
906 B
906 B
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:
- Compile the code
- Generate the jars for server & plugins
- Copy them into the
distdirectory
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.