histogram width divide by mode, not total #2

Merged
christofsteel merged 47 commits from honigle into main 2022-02-02 13:59:36 +01:00
2 changed files with 4 additions and 1 deletions
Showing only changes of commit 61d34186f1 - Show all commits

View file

@ -1,4 +1,4 @@
{ {
"editor.formatOnSave": true, "editor.formatOnSave": true,
"editor.defaultFormatter": "esbenp.prettier-vscode" "editor.defaultFormatter": "esbenp.prettier-vscode"
} }

View file

@ -22,6 +22,7 @@ I implemented Tailwind mostly because I wanted to learn how to use Tailwind CSS,
_To Run Locally:_ _To Run Locally:_
Clone the repository and perform the following command line actions: Clone the repository and perform the following command line actions:
```bash ```bash
$ cd wordle $ cd wordle
$ npm install $ npm install
@ -29,10 +30,12 @@ $ npm run start
``` ```
_To build/run docker container:_ _To build/run docker container:_
```bash ```bash
$ docker build -t notwordle . $ docker build -t notwordle .
$ docker run -d -p 3000:3000 notwordle $ docker run -d -p 3000:3000 notwordle
``` ```
open http://localhost:3000 in browser. open http://localhost:3000 in browser.
_To create a version in a different language:_ _To create a version in a different language:_