Simply run below command to start a backend server.
docker run -d --name lowcoder -p 3000:3000 -v "$PWD/stacks:/lowcoder-stacks" lowcoderorg/lowcoder-ceFor more information, view our docs
- Check out source code and change to source dir.
- Use the command below to build Docker image :
docker build -f ./deploy/docker/Dockerfile -t lowcoder-dev .- Start
docker run -d --name lowcoder-dev -p 3000:3000 -v "$PWD/stacks:/lowcoder-stacks" lowcoder-dev- Check out source code.
- Change to client dir in the repository root via cd client.
- Run yarn to install dependencies: .
- Start dev server:
LOWCODER_API_SERVICE_URL=http://localhost:3000 yarn start. - After dev server starts successfully, it will be automatically opened in the default browser.
In addition, before submitting a pull request, please make sure the following is done:
- If you’ve fixed a bug or added code that should be tested and add unit test suite.
- Run
yarn testand ensure all test suites pass. - If you add new dependency, use yarn workspace lowcoder some-package to make sure yarn.lock is also updated.