A dictionary API service that provides definitions, usage, etymologies, pronunciations, and translations.
Clone the repository:
git clone https://github.com/ElliottStorey/open-dictionary.git
cd open-dictionaryInstall dependencies:
npm installSet up environment variables by copying the example file:
cp .env.example .envStart the development server:
npm run devFor production:
npm startThe API will be available at the configured port (default: http://localhost:3000).
Build and run with Docker:
docker build -t open-dictionary .
docker run -p 3000:3000 open-dictionary