This repository contains the code / starting points that match the topics in the material repository.
- This repo only contains the code / starting points - the exercise descriptions remain in the material repository
- Starting points are in separate branches, the branch name maps to the corresponding topics in the material repository, e.g.
logging-fundamentals
- The code for the starting point resides directly in the top-level directory of the corresponding branch
- The master branch only contains a base project with following run scripts:
npm run build
transpiles the Typescript code into .js codenpm start
starts the application (usenpm run build
before)npm run start:dev
starts the application without transpilation stepnpm run db:start
starts a local postgres docker containernpm test
runs all testsnpm run lint
executes static code checks