Skip to content

Commit 146efd4

Browse files
committed
Bump NocoDB to 0.260.2
1 parent d1e851d commit 146efd4

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

DEVELOPMENT.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,5 +2,5 @@
22

33
1. `scripts/setup-nocodb-with-pg-sakila-db.sh`
44
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
66
- Execute `make show-NC_DB` to get the connection URL.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,10 +28,10 @@ setup_nocodb:
2828
./scripts/setup-nocodb-with-pg-sakila-db.sh
2929

3030
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}'
3232

3333
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'\'';"'
3535
cd _nocodb/docker-compose/pg && docker-compose exec root_db bash -c 'psql -U $$POSTGRES_USER -d $$POSTGRES_DB -c "SELECT pg_reload_conf();"'
3636

3737
tail_db_log:

scripts/setup-nocodb-with-pg-sakila-db.sh

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
#!/bin/bash -eu
2-
export NOCODB_TAG=0.207.2
2+
export NOCODB_TAG=0.260.2
33

44
if [ ! -d "_nocodb" ]; then
55
git clone https://github.com/nocodb/nocodb.git _nocodb
@@ -10,7 +10,7 @@ git fetch -p
1010
git checkout .
1111
git checkout $NOCODB_TAG
1212

13-
cd docker-compose/pg
13+
cd docker-compose/2_pg
1414

1515
# for Apple M1 chipset
1616
# if [ $(uname) == 'Darwin' ] && [ $(uname -m) == 'arm64' ]; then

0 commit comments

Comments
 (0)