I am new to linux (ubuntu) and am tasked to develop web pages using vscode. What would be the ideal location for me to keep my project directories? I don't want to be illogical or pollute a file system convention I don't know about.
linux directory location best practices for software development
3.7k views Asked by FairSite2C At
3
There are 3 answers
0
On
According the Filesystem Hierarchy Standard I recommend create a directory inside
/var/lib/
with the name of the application, just like this:
/var/lib/my-app
Personal projects all belong in the
/home/
directory. When you're ready to test you'll symlink to the directroy you host from. When you're done with the project you'll have to decide where the best "permanent" location is. See the File System Hierarchy Standard for details.