The site it not working anymore due to a makeover of a scraped website. It shouldn't be too hard to fix, but I am not interested in learning Estonian anymore. Thus, I will not spend resources on it. Feel free to fork this repository.
The Estonian language is spoken by only about one million people worldwide. Thus, the number of online language recourses are limited. There are online dictionaries such as Google Translate, but they are not catered for the peculiarities of the Estonian languages. For instance, only one form of the noun is given instead of the essential three forms: the singular nominative, singular genitive, and singular partitive.
In this dictionary, you can search for an English term and obtain the corresponding Estonian terms enriched with information about their cases. It is, unfortunately, not possible to get the declensions right away. You have to infer them from the displayed notes and rules delivered by the Eesti Keele Institue (EKI , The Institue of the Estonian Language). This dictionary combines two of their web services:
So in essence, it first translates the word via [IES] and and then looks up the Estonian terms on [ÕS].
I am grateful for any contribution, feedback or bug report.
- install node
- install the building tool brunch:
npm install -g brunch
cd frontend
npm install
npm start
to compile the code and start a development server- before going in production, change the server address in the
scripts
section in thepackage.json
cd backend
npm install
npm start
to run a start a development server- you may have to change the port in the
index.js
To go into production, you can make sense of it by taking a look at my deployment script. Change the xx
and make sure that you able to login to your server via ssh. I use pm2 to deploy the backend.
#!/bin/bash
BACKEND_URL=xx@xx.xx
BACKEND_FOLDER=/xx/xx
BACKEND_REMOTE_LOCATION=$BACKEND_URL:$BACKEND_FOLDER
FRONTEND_REMOTE_LOCATION=xx@xx.xx:/xx/xx
if [ "$1" = "--frontend" ]
then
cd frontend
rm -rf public/
npm run build
rsync --recursive --verbose --delete public/ $FRONTEND_REMOTE_LOCATION
cd ..
fi
if [ "$1" = "--backend" ]
then
cd backend
rm -rf build/
npm run build
cp package.json build
rsync --recursive --verbose --delete build/ $BACKEND_REMOTE_LOCATION
ssh $BACKEND_URL "cd $BACKEND_FOLDER && npm install --verbose && pm2 restart all"
fi
GPL.