DEV Community

Discussion on: How do you organize your projects?

Collapse
 
dailydevtips1 profile image
Chris Bongers

Hey Mazda,

For me, it's obviously all in GIT.

But next to that my local environment is very simple:

--- www (the main folder, that's linked to my localhost)
---- git project 1 (no matter what, PHP, Angular, Ionic)
---- play (playground folder, can run simple PHP scripts)
----- script1.php

Basically it's cd www and runs whatever I need to start working on.
I do clean up this directory if I don't have to work on this project for a while.

Also, a good one to keep track if all projects are committed:
Check git commit status

Collapse
 
madza profile image
Madza

Thanks for the input 🙏❤