This repository contains the source code for the website https://learnemoji.dev.
This website is a simple guessing game where an emoji is shown and the user types in a guess.
The answers take the form of canonical short names used on websites such as GitHub, Slack, Discord, Windows, macOS, and more. These short names follow closely to the CLDR Short Names from unicode.org.
For example, :see_no_evil:
corresponds to 🙈, :hear_no_evil:
is 🙉, and :speak_no_evil:
is 🙊.
This repository leverages VSCode's devcontainer feature to ensure all necessary dependencies are available inside the container for development.
To get started:
npm install && npm start
This will start the application on your local machine, running on http://localhost:5173/.
All application deployments are managed via GitHub Actions and the ./.github/workflows/deploy.yml
workflow.
Additionally, application dependencies are automatically managed and updated via Dependabot and the ./.github/workflows/automerge-dependabot.yml
workflow.