by [Alexandre Harano] (mailto:email@ayharano.dev)
"Code Challenge" provides a solution to a code challenge which requires to display the word count of a non-empty text input provided by a user through a web page.
You are free to copy, modify, and distribute "Code Challenge" with attribution under the terms of the MIT license. See the LICENSE file for details.
- A Web browser that supports EMCAScript 6+
- Python 3.8+
- Poetry 1.0.10+
Using a terminal, change current directory to the directory containing this README file.
After that, run
poetry installUsing a terminal, change current directory to the directory containing this README file.
After that, run
poetry run manage.py runserverand in a Web browser open the URL http://127.0.0.1:8000/
If port 8000 is being used, run command
poetry run manage.py runserver <PORT>and in a Web browser open the URL http://127.0.0.1:<PORT>/
This project Web site can be only accessed in the server local machine, as it is only using default development settings for now.
Using a terminal, change current directory to the directory containing this README file.
After that, run
poetry run manage.py testto run included tests.