DEV Community

Discussion on: How do you keep development projects on your PC organized?

Collapse
 
euantorano profile image
Euan T • Edited

I have a Development folder in my home directory, which then has subfolders by language/framework. For example:

/Users/euantorano/Development
├── dlang
│   └── phobos
├── nim
│   ├── Nim
│   ├── pledge.nim
│   ├── recaptcha.nim
│   ├── serial.nim
│   ├── Nim.sublime-project
│   ├── Nim.sublime-workspace
│   ├── serial.nim.sublime-project
│   └── serial.nim.sublime-workspace
└── zig
    ├── docker-zig
    ├── ini
    ├── stomp
    ├── zig-chocolatey-package
    ├── docker-zig.sublime-project
    ├── docker-zig.sublime-workspace
    ├── ini.sublime-project
    ├── ini.sublime-workspace
    ├── stomp.sublime-project
    ├── stomp.sublime-workspace
    ├── zig-chocolatey-package.sublime-project
    └── zig-chocolatey-package.sublime-workspace
Enter fullscreen mode Exit fullscreen mode

I primarily use a Mac these days, and also make use of Finder's tags to categorise projects based on language and such.

PS: Not sure what's going on with the formatting of the above code block...