chore: add .tool-versions, update README #93
Merged
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
Some final housekeeping to make sure we can reproduce our dev environment in the future. If we want to show this project off but future
node
updates break this project, we want to know what version ofnode
we were using during development (in this instance, 19) to go back to a stable environment.Just as
package.json
tracks what versions of packages we're using, a.tool-versions
file tracks what versions of compilers/tools are being used for the project. You can use it to manually check and download the required versions, but it can also be a configuration file used by the runtime configuration tool asdf, its rust clone rtx, or any other asdf compatible tool to automatically download/manage these dependencies.This also unpins node 19.7, as 19.8.1 was released to fix nodejs/node#47096 (which is the issue we were running into).
Finally, added a link to our latest deployment and picture of the homepage so that the README has everything.