writing about things
{
.date= 2020-02-02

.title= Getting Started

Starting from scratch the following technologies:

To get started, create a new folder to contain the project, I'm calling it starter-app

mkdir starter-app; cd starter-app;
git init # so we can track our progress
yarn init --private

mkdir .devcontainer # for vscode container development
touch .devcontainer/devcontainer.json

mkdir @app # where we keep the various parts of the app
}