You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@@ -80,7 +77,6 @@ have to mount a project directory if you do not want to parse it later.
80
77
### Build, install and test CodeCompass
81
78
You can use the `codecompass-build.sh` script inside the container to build,
82
79
install and test CodeCompass:
83
-
(If you get a timeout error when downloading, put this command before install: NODE_OPTIONS="--max-old-space-size=4096" NEXT_PRIVATE_BUILD_WORKER_TIMEOUT=600)
84
80
```bash
85
81
# Build CodeCompass.
86
82
codecompass-build.sh -j8
@@ -92,52 +88,25 @@ codecompass-build.sh install
92
88
codecompass-build.sh test
93
89
```
94
90
95
-
### Make a Postgresql container
96
-
You need to create a PostgreSQL container that CodeCompass can communicate with.
97
-
(postgres is the image name and :15 is the specific version)
98
-
```bash
99
-
docker run \
100
-
--name postgres_container \
101
-
-e POSTGRES_PASSWORD=root_password \
102
-
-d \
103
-
-p 5432:5432 \
104
-
postgres:15
105
-
```
106
-
107
-
### Create a network and connect CodeCompass and Postgres
0 commit comments