PromucFlow_constructor/app/server
Abhijeet 51addbc963
Feature/import-export-application (#4553)
* 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
2021-06-01 17:38:26 +05:30
..
.run [Issue #2093]-show last used organizations first in home page (#4461) 2021-05-16 09:42:10 +06:00
appsmith-interfaces Feature/import-export-application (#4553) 2021-06-01 17:38:26 +05:30
appsmith-plugins Fixes failure due to extra spaces in authorization url in OAuth2 datasource (#4818) 2021-06-01 13:45:04 +05:30
appsmith-server Feature/import-export-application (#4553) 2021-06-01 17:38:26 +05:30
envs Feature/import-export-application (#4553) 2021-06-01 17:38:26 +05:30
mongo-seed Code formatting corrected. 2020-04-20 18:17:25 +05:30
scripts Use IPv4 on WSL machines (#2729) 2021-01-28 12:08:44 +05:30
.gitignore Improve server setup experience documentation (#4441) 2021-05-19 19:29:08 +05:30
build.sh Merge branch 'release' into feature/acl-spring-object 2020-06-12 19:14:31 +05:30
buildpack-run.sh Merge branch 'release' into feature/acl-spring-object 2020-04-28 18:13:06 +05:30
docker-compose.yml Improve server setup experience documentation (#4441) 2021-05-19 19:29:08 +05:30
Dockerfile change java version to 11.0.10 to allow TLSv1 for mysql (#4528) 2021-05-17 18:42:54 +05:30
entrypoint.sh Merge branch 'release' into feature/acl-spring-object 2020-04-28 18:13:06 +05:30
pom.xml Introducing Google Sheets Plugin (#3517) 2021-04-22 09:00:09 +05:30
Procfile
README.md Improve server setup experience documentation (#4441) 2021-05-19 19:29:08 +05:30
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

  1. Clone the Appsmith repository and cd into it
git clone https://github.com/appsmithorg/appsmith.git
cd appsmith
  1. Change your directory to app/server
cd app/server
  1. Create a copy of the envs/docker.env.example
cp envs/docker.env.example envs/docker.env
  1. Start up the containers
docker-compose up -d
  1. Have fun!