Skip to content

Commit

Permalink
two-step install to discourage installing anything directly from inte…
Browse files Browse the repository at this point in the history
…rnet
  • Loading branch information
ardentperf committed Jan 9, 2024
1 parent 150e274 commit 8075584
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,8 @@ Installation

The quickest way to install DSEF is to create its functions with this command:

curl https://raw.githubusercontent.com/ardentperf/dsef/main/sql/dsef.sql | psql
curl -O https://raw.githubusercontent.com/ardentperf/dsef/main/sql/dsef.sql
psql <dsef.sql

The SQL file at the URL above can also be opened and executed with a GUI development
tool like pgAdmin.
Expand Down Expand Up @@ -59,7 +60,8 @@ Install extension to RDS 14.5+ (including Aurora)
--parameters "ParameterName=shared_preload_libraries,ParameterValue=pg_tle"
CREATE EXTENSION pg_tle;

curl https://raw.githubusercontent.com/ardentperf/dsef/main/tle/dsef.tle | psql
curl -O https://raw.githubusercontent.com/ardentperf/dsef/main/tle/dsef.tle
psql <desf.tle


Un-Installation
Expand Down

0 comments on commit 8075584

Please sign in to comment.