6
6
7
7
#### Use prebuilt docker image
8
8
9
- Simply run below command to start a backend server.
9
+ Simply run the below command to start a backend server.
10
10
11
11
``` bash
12
12
docker run -d --name lowcoder -p 3000:3000 -v " $PWD /stacks:/lowcoder-stacks" lowcoderorg/lowcoder-ce
13
13
```
14
14
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)
16
16
17
17
#### Build Docker image from source
18
18
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 :
21
21
22
22
``` bash
23
23
docker 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"
31
31
32
32
### Start develop
33
33
34
- 1 . Check out source code.
34
+ 1 . Check out the source code.
35
35
2 . 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
+ ```
40
+
41
+ 4 . Run yarn to install dependencies: .
42
+
43
+ ``` bash
44
+ yarn install
45
+ ```
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.
39
49
40
50
### Before submitting a pull request
41
51
0 commit comments