Fedora Development Machine .net core + angular 9
Things to do after installing fedora 32 for .net core and Angular 9 development
- Install build-essential `sudo dnf install make automake gcc gcc-c++ kernel-devel`
- Install node version manager (https://github.com/nvm-sh/nvm) and install nvm eg: `nvm install 12.18.2`
- Install visual studio code and plugins (https://mycodingreferences.blogspot.com/2020/07/visual-studio-code-plugins-for-angular.html)
- Install .net core https://docs.microsoft.com/en-gb/dotnet/core/install/linux-fedora && https://docs.microsoft.com/en-gb/dotnet/core/install/linux-fedora#fedora-32-
- Now Install .net tool for entity framework `dotnet tool install --global dotnet-ef`
- Install bash-gitprompt ref here -> https://github.com/magicmonty/bash-git-prompt
- install xclip
- Generate keypair for ssh access to github / bitbucket issue command `ssh-keygen ` and generate key pair , `cat id_rsa.pub` and copy public key and update gitbub ssh public key ref :: https://support.atlassian.com/bitbucket-cloud/docs/set-up-an-ssh-key/ or https://docs.github.com/en/github/authenticating-to-github/generating-a-new-ssh-key-and-adding-it-to-the-ssh-agent
- Update bashrc file with `ssh-add ~/.ssh/id_rsa`
- Install gitg / git-cola
- npm install -g @angular/cli
Comments
Post a Comment