PromucFlow_constructor/app/server/README.md
Confidence Okoghenun 639cba9095
Improve server setup experience documentation (#4441)
* fix: Updates appsmith server docker-compose

* fix: Updates server docker-compose

* fix: Removes exposed ports

* docs: Adds updates for server docker-compose

* docs: Adds updates for server docker-compose

* docs: Updates app/server/README.md

Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>

* chore: Removes deprecated env vars

Co-authored-by: Arpit Mohan <mohanarpit@users.noreply.github.com>
2021-05-19 19:29:08 +05:30

1007 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. 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!