File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change 2
2
3
3
1 . ` scripts/setup-nocodb-with-pg-sakila-db.sh `
4
4
2 . ` open localhsot:8080 `
5
- 3 . Create Base > Open settings of the created base > Data Sources > New Data Source > Use Connection URL & Set ` SSL mode ` to ` No ` > Submit
5
+ 3 . Integrations > PostgreSQL > Use Connection URL > Test connection > Create connection
6
6
- Execute ` make show-NC_DB ` to get the connection URL.
Original file line number Diff line number Diff line change @@ -28,10 +28,10 @@ setup_nocodb:
28
28
./scripts/setup-nocodb-with-pg-sakila-db.sh
29
29
30
30
show_nc_db :
31
- grep NC_DB _nocodb/docker-compose/pg /docker-compose.yml | awk ' {print $$2}'
31
+ grep NC_DB _nocodb/docker-compose/2_pg /docker-compose.yml | awk ' {print $$2}'
32
32
33
33
enable_db_log :
34
- cd _nocodb/docker-compose/pg && docker-compose exec root_db bash -c ' psql -U $$POSTGRES_USER -d $$POSTGRES_DB -c "ALTER SYSTEM SET log_statement = ' \' ' all' \' ' ;"'
34
+ cd _nocodb/docker-compose/2_pg && docker-compose exec root_db bash -c ' psql -U $$POSTGRES_USER -d $$POSTGRES_DB -c "ALTER SYSTEM SET log_statement = ' \' ' all' \' ' ;"'
35
35
cd _nocodb/docker-compose/pg && docker-compose exec root_db bash -c ' psql -U $$POSTGRES_USER -d $$POSTGRES_DB -c "SELECT pg_reload_conf();"'
36
36
37
37
tail_db_log :
Original file line number Diff line number Diff line change 1
1
#! /bin/bash -eu
2
- export NOCODB_TAG=0.207 .2
2
+ export NOCODB_TAG=0.260 .2
3
3
4
4
if [ ! -d " _nocodb" ]; then
5
5
git clone https://github.com/nocodb/nocodb.git _nocodb
@@ -10,7 +10,7 @@ git fetch -p
10
10
git checkout .
11
11
git checkout $NOCODB_TAG
12
12
13
- cd docker-compose/pg
13
+ cd docker-compose/2_pg
14
14
15
15
# for Apple M1 chipset
16
16
# if [ $(uname) == 'Darwin' ] && [ $(uname -m) == 'arm64' ]; then
You can’t perform that action at this time.
0 commit comments