- A word is said to be 'fancy' if it is not in the list of the most common 10,000 words used in the English language.
- Computer would generate a fancy word.
- You have to come up with a fancy word that starts with the last letter of the computer word.
- The score represents the streak of valid and fancy words.
- Any time an invalid or a word that is not fancy is entered, the score is set to 0.
- Fork the repository
- Clone the repository
git clone git@github.com/<your_username>/wordatlas
- Install python 3.11 as it is required for running the game. You can download it from here
- Create a virtual environment. We will be using venv to create and manage virtual env. Run the following command in the project directory.
python3 -m venv venv
- Activate the virtual environment.
- Install the requirements mentioned in the requirements' directory. Run the following command
pip3 install -r requirements/dev-requirements.txt
- Make any migrations if required.
- Run the game by
python3 manage.py runserver