A basic containerized word finder toolkit. Deploy from the Azure Cloud Shell (shell.azure.com) which has the latest Azure CLI and VS Code pre-installed.
git clone https://github.com/gbowerman/wfgdocker
./deploydemo.sh nameofwebapp
Where nameofapp is a unique name.
After a few minutes the app will be available at https://nameofapp.azurewebsites.net
This script removes the resource group created by the deploy script.
./resetdemo.sh nameofwebapp
The app is a Python Flask based web app that provides word finding features..
- Find words - Useful for solving crosswords. Put question marks for the letters you don't know. Note: output is limited to 100 words.
- Anagrams - Finds anagrams based on the letters you enter.
- Generate pass phrases - Randomly generate a set of passwords based on a combination of words, punctuation and numbers, which suit most password requirements, are relatively easy to remember, with fairly high entropy.
This app uses a word list from: https://github.com/atebits/Words/ - thanks @atebits for curating this list and making it available.