...
- The audience doesn’t need to pay for it or go through a lengthy sign up process. I want to give them a link directly to the page where they enter their words.
- The results don’t need to be embeddable as long as I can share the results when I’m presenting on a Website.
Architectural Diagram
Data Structure
The wordle questions and answers are saved as .json files in the "src/_data/" directory in the GitHub repository:
- Every wordle question is saved as an individual .json file in the file name: {uuid}-question.json
- Answers to a wordle question is saved as an individual .json file in the file name: {uuid}-answers.json
The format of a wordle question file
Code Block |
---|
{
"workshopName": {String},
"question": {String},
"entries": {Number},
"entryMaxLength": {Number},
"createdTimestamp": {Timestamp},
"lastModifiedTimestamp": {Timestamp}
} |
The format of a wordle answers file
Code Block |
---|
{
"{uuid}": {
"answers": {String[]},
"createdTimestamp": {Timestamp}
}
....
} |
Why Using Github Branches as Data Source
...