Go to file
2023-04-24 21:46:14 +02:00
assets UI tuning 2022-07-29 16:08:59 +02:00
crates Add Trunk.toml 2023-04-24 21:46:14 +02:00
db Start basics 2023-04-24 16:11:49 +02:00
migrations Fixes 2022-07-22 13:05:13 +02:00
scripts Minify js 2022-07-24 13:46:15 +02:00
.env Fixes 2022-07-22 13:05:13 +02:00
.gitignore Work on Sycamore 2023-04-24 06:31:00 +02:00
Cargo.lock Start basics 2023-04-24 16:11:49 +02:00
Cargo.toml Start basics 2023-04-24 16:11:49 +02:00
README.md Start basics 2023-04-24 16:11:49 +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;