Difference between revisions of "Pgjwt"

From UVOO Tech Wiki
Jump to navigation Jump to search
(Created page with "https://github.com/michelp/pgjwt.git ``` # postgresql-server-dev-all cd /root/ apt-get update && apt-get -y install git gcc make git clone https://github.com/michelp/pgjwt.gi...")
 
 
(One intermediate revision by the same user not shown)
Line 9: Line 9:
 
make install
 
make install
 
cp pgjwt.control /opt/bitnami/postgresql/share/extension/
 
cp pgjwt.control /opt/bitnami/postgresql/share/extension/
 +
cd ../
 +
```
 +
# https://github.com/theory/pgtap
 +
 +
```
 +
cd /root/
 +
git clone https://github.com/theory/pgtap
 +
cd pgtap
 +
make
 +
make install
 +
make installcheck
 +
cd ../
 
```
 
```

Latest revision as of 21:29, 30 April 2023

https://github.com/michelp/pgjwt.git

# postgresql-server-dev-all
cd /root/
apt-get update && apt-get -y install git gcc make
git clone https://github.com/michelp/pgjwt.git
cd pgjwt
make install
cp pgjwt.control /opt/bitnami/postgresql/share/extension/
cd ../

https://github.com/theory/pgtap

cd /root/
git clone https://github.com/theory/pgtap
cd pgtap
make
make install
make installcheck
cd ../