Skip to content

Commit

Permalink
More README updates
Browse files Browse the repository at this point in the history
  • Loading branch information
prmoore77 committed Jul 23, 2024
1 parent c25869e commit 254aee6
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -282,7 +282,7 @@ This option allows choosing from two backends: SQLite and DuckDB. It defaults to
```bash
$ SQLFLITE_PASSWORD="sqlflite_password" sqlflite_server --database-filename data/TPC-H-small.duckdb
Apache Arrow version: 17.0.0
WARNING - TLS is disabled for the Flight SQL server - this is insecure.
WARNING - TLS is disabled for the SQLFlite server - this is insecure.
DuckDB version: v1.0.0
Running Init SQL command:
SET autoinstall_known_extensions = true;
Expand All @@ -291,7 +291,7 @@ Running Init SQL command:
Using database file: "/opt/sqlflite/data/TPC-H-small.duckdb"
Print Queries option is set to: false
SQLFlite server - with engine: DuckDB - will listen on grpc+tcp://0.0.0.0:31337
Flight SQL server - started
SQLFlite server - started
```

The above call is equivalent to running `sqlflite_server -B duckdb` or `sqlflite --backend duckdb`. To select SQLite run
Expand All @@ -307,7 +307,7 @@ The above will produce the following:

```bash
Apache Arrow version: 17.0.0
WARNING - TLS is disabled for the Flight SQL server - this is insecure.
WARNING - TLS is disabled for the SQLFlite server - this is insecure.
SQLite version: 3.45.0
Using database file: "/opt/sqlflite/data/TPC-H-small.sqlite"
Print Queries option is set to: false
Expand Down Expand Up @@ -371,7 +371,7 @@ There is now a slim docker image available, without Python, tls certificate gene
You must supply the following environment variables to the slim image:
- `DATABASE_FILENAME` - the path to the database file to use
- `SQLFLITE_PASSWORD` - the password to use for the Flight SQL server
- `SQLFLITE_PASSWORD` - the password to use for the SQLFlite server
You can optionally supply the following environment variables:
- `TLS_ENABLED` - set to "1" to enable TLS (default is "0" - disabled)
Expand Down

0 comments on commit 254aee6

Please sign in to comment.