Go to file
2023-09-01 06:51:06 +02:00
assets Test sign out, fix refresh token and access token 2023-08-30 22:53:12 +02:00
crates Documentation and tests 2023-09-01 06:51:06 +02:00
scripts Fix serialize issues 2023-07-27 22:29:04 +02:00
.env Fixes 2022-07-22 13:05:13 +02:00
.gitignore Display locations 2023-08-23 16:06:31 +02:00
Cargo.lock Documentation and tests 2023-09-01 06:51:06 +02:00
Cargo.toml Test sign out, fix refresh token and access token 2023-08-30 22:53:12 +02:00
docker-compose.yml Working on session 2023-08-16 08:04:48 +02:00
README.md Start basics 2023-04-24 16:11:49 +02:00
rust-toolchain.toml handle sign in 2023-08-03 16:16:46 +02:00
rustfmt.toml Upload image 2022-07-08 15:28:30 +02:00

OS Wilno

PostgreSQL dictionary

https://github.com/dominem/postgresql_fts_polish_dict

cp db/dictionary/polish.dict /usr/share/postgresql/tsearch_data/polish.dict
cp db/dictionary/polish.affix /usr/share/postgresql/tsearch_data/polish.affix
cp db/dictionary/polish.stop /usr/share/postgresql/tsearch_data/polish.stop
CREATE TEXT SEARCH DICTIONARY polish (
  Template = ispell,
  DictFile = polish,
  AffFile = polish,
  StopWords = polish
);

CREATE TEXT SEARCH CONFIGURATION polish(parser = default);

ALTER TEXT SEARCH CONFIGURATION polish
  ALTER MAPPING FOR asciiword, asciihword, hword_asciipart, word, hword, hword_part
  WITH polish;