To find all git files in your machine type the following in the terminal:
find . -name .git -type d -prune
Shortcut: Click F2 and then change the variable name and click 'enter' to change all variables that is the same as what you selected before hitting F2.
Things I didn't remember to do when trying to create my server and database from memory:
- Install nodemon by:
npm install nodemon --save-dev
- To pull variable from .env after configing is
process.env
- After creating the database name in psql.
\c ...
Continue reading ...