Quick start a new basic web project:
Use this as a cheat sheet for saving time when doing assessments. This is how you construct it from scratch. There are many things out there that can generate stuff for you, but it helps to know how the foundations.
- Open iTerm terminal (the default Mac one sucks).
cd ~
to go to your home directory and thenpwd
to show your location (using finder is also fine if you don't like the terminal).mkdir sylvia_study
and thencd sylvia_study
to navigate in to that directory.git init
to initiate the folder as a git repository so that version changes can be seen.