Skip to content

2ndLA/PROnunciation

Repository files navigation

PROnunciation

License-MIT Updated

Correct pronunciation makes you sound more professional and causes less misunderstanding.

Contributing

Words Request

For any words that we haven't collected, please issue them in issues.

Or to collect words by yourself, follow steps below:

Cloning this repository

git clone git@github.com:kvko/PROnunciation.git

Installing dependencies

cd PROnunciation
yarn install

Running development server

cp .env_template .env
# edit .env
yarn start

Creating a new branch to work on

# adding new words
git checkout -b words/term001
# or developing new feature
git checkout -b feature/new-feature
# or bugfix
git checkout -b bugfix/fix-the-error

Working on your branch

# do something

Opening a pull request

GitHub Guides: Making a Pull Request

Downloading audio automatically [Optional]

cd ./helpers
# Put words you want to add into `helpers/NewWords.txt`, one word per line
# Use VPN to reach Google, then run
python WordHelper.py

References