Skip to content

Setting up a development environment

Jon Andre Briones edited this page Jul 24, 2025 · 15 revisions

Prerequisites

You will need:

  • SSH Keys
    • You'll need these to access git in the preferred way, through SSH
    • Follow this on how to do it
  • git: latest versions work fine, I have never encountered issues with versions of git before
    • To pull the repo
  • node: 22.X
    • To install the dependencies of the project
    • You may want to use Node Version Manager nvm to manage your Node version, in case you're working on other projects
  • npm: 10.9.X
  • The Angular CLI: 20.X.X
    • This is used to generate all the components, services, directives, etc. in Angular.
    • Invoke commands with ng <command>
    • You need to install it globally (-g) so that you can use it without npm
npm install -g @angular/cli

Clone this wiki locally