* Decryption for dbauth, basic and OAuth datasources added in exported file * All authentications for datasources included while exporting as deserialization is done through json file otherwise cast is throwing error * Content-Disposition header implemented * MongoEscapedWidget names segregated for published and unpublished layout, to prevent overwrite while exporting * Published pages and actions explicitly handled in cases where unpublished resources are deleted |
||
|---|---|---|
| .. | ||
| .run | ||
| appsmith-interfaces | ||
| appsmith-plugins | ||
| appsmith-server | ||
| envs | ||
| mongo-seed | ||
| scripts | ||
| .gitignore | ||
| build.sh | ||
| buildpack-run.sh | ||
| docker-compose.yml | ||
| Dockerfile | ||
| entrypoint.sh | ||
| pom.xml | ||
| Procfile | ||
| README.md | ||
| 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. Alternatively, you can run the server using docker(see the instructions below).
Run locally with Docker
You can run the server codebase in a docker container. This is the easiest way to get the server up and running if all you care about is contributing to the client codebase.
What's in the box
- Appsmith server
- MongoDB
- Redis
Pre-requisites
Steps for setup
- Clone the Appsmith repository and
cdinto it
git clone https://github.com/appsmithorg/appsmith.git
cd appsmith
- Change your directory to
app/server
cd app/server
- Create a copy of the
envs/docker.env.example
cp envs/docker.env.example envs/docker.env
- Start up the containers
docker-compose up -d
- Have fun!