66
77#### Use prebuilt docker image
88
9- Simply run below command to start a backend server.
9+ Simply run the below command to start a backend server.
1010
1111``` bash
1212docker run -d --name lowcoder -p 3000:3000 -v " $PWD /stacks:/lowcoder-stacks" lowcoderorg/lowcoder-ce
1313```
1414
15- For more information, view our [ docs] ( ../docs /self-hosting)
15+ For more information, view our [ docs] ( https://docs.lowcoder.cloud/lowcoder-documentation/setup-and-run /self-hosting)
1616
1717#### Build Docker image from source
1818
19- 1 . Check out source code and change to source dir.
20- 2 . Use the command below to build Docker image :
19+ 1 . Check out the source code and change to source dir.
20+ 2 . Use the command below to build a Docker image :
2121
2222``` bash
2323docker build -f ./deploy/docker/Dockerfile -t lowcoder-dev .
@@ -31,11 +31,21 @@ docker run -d --name lowcoder-dev -p 3000:3000 -v "$PWD/stacks:/lowcoder-stacks"
3131
3232### Start develop
3333
34- 1 . Check out source code.
34+ 1 . Check out the source code.
35352 . Change to client dir in the repository root via cd client.
36- 3 . Run yarn to install dependencies: .
37- 4 . Start dev server: ` LOWCODER_API_SERVICE_URL=http://localhost:3000 yarn start ` .
38- 5 . After dev server starts successfully, it will be automatically opened in the default browser.
36+
37+ ``` bash
38+ cd client
39+ ` ` ` bash
40+
41+ 4. Run yarn to install dependencies: .
42+
43+ ` ` ` bash
44+ yarn install
45+ ` ` ` bash
46+
47+ 5. Start dev server: ` LOWCODER_API_SERVICE_URL=http://localhost:3000 yarn start` .
48+ 6. After the dev server starts successfully, it will be automatically opened in the default browser.
3949
4050# ## Before submitting a pull request
4151
0 commit comments