Skip to content

Web app to search English words using regular expressions.

License

Notifications You must be signed in to change notification settings

mitty1293/word_searcher

Repository files navigation

word_searcher

Overview

Web app to search English words using regular expressions.

Access http://wordsearcher.fmitty.net/, type or paste your input data and press the search button.

Self hosting(via traefik)

Replace the value of DOMAIN with the domain.

# Copy .env_example as .env
cp .env_example .env
vi .env
# Replace the value of DOMAIN in .env
DOMAIN=example.com

Start the container.

docker network create traefik_reverse_proxy_network
docker compose -f compose.traefik.yml up -d

Go to https://wordsearcher.${DOMAIN}.

Self hosting(Standalone)

docker build -t word_searcher ./word_searcher/
docker run -itd -p <host-port>:80 --name word_searcher word_searcher

Go to http://host-ip:host-port.

辞書について

以下を使用しています。
https://github.com/kujirahand/EJDict

そのままのフォーマットでは、日本語の意味を含んでいたりカンマで区切られたりしています。

英単語1 \t 意味1
英単語2 \t 意味2
英単語3 \t 意味3
...
英単語, 英単語, 英単語 \t 意味

日本語は不要でカンマを改行としたいので、cuttrで英単語のみを取り出しています。

cut -f 1 ejdict-hand-utf8.txt | tr ',' '\n' > ejdict-hand-utf8-english-only.txt

About

Web app to search English words using regular expressions.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published