{
.date=
.title=
Getting Started
Starting from scratch the following technologies:
- nextjs
- typescript
- apollo/graphql
- cookie based auth
- in-container development (with vscode)
- jest based testing
- knex
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
}