database extension
This commit is contained in:
parent
1394cc7582
commit
9054c808ea
1 changed files with 8 additions and 0 deletions
|
@ -89,6 +89,14 @@ Everything should work automagically from there.
|
||||||
|
|
||||||
## Deploying
|
## Deploying
|
||||||
|
|
||||||
|
First you need to set up your database, whoch just needs to be created.
|
||||||
|
Additionally you connect to your database (with `psql` or similar) and activate
|
||||||
|
the `pg_trgm` extension to the database with
|
||||||
|
|
||||||
|
```sql
|
||||||
|
CREATE EXTENSION pg_trgm;
|
||||||
|
```
|
||||||
|
|
||||||
After compiling you will find an executable called `eidolon` in
|
After compiling you will find an executable called `eidolon` in
|
||||||
`dist/build/eidolon/eidolon`. Copy or link it anywhere you
|
`dist/build/eidolon/eidolon`. Copy or link it anywhere you
|
||||||
want. The executable needs to be accompanied by the folders `config` and
|
want. The executable needs to be accompanied by the folders `config` and
|
||||||
|
|
Loading…
Reference in a new issue