Development directory Structure -


i wondering directory structure commonly used in development projects. mean idea of facilitating builds, deploys release, , etc.

i used maven structure java project, not sure it's best structure non-maven driven project.

so, have 2 questions: when guys start new projects, structure use? and: if need integrate 2 different languages, example java classes php application; php files source files, web files, you use /src, /classes, webapps/php ? choices in such scenarios.

as note: wondering choices directories names. 3-letters names (src, lib, bin, web, img, css, xml, cfg) opinions descriptive names libraris, sources or htdocs/public_html ?

after couple years working different structures found structure hols variations me:

/project_name     (everything goes here)   /web            (htdocs)     /img     /css   /app            (usually framework or sensitive code)   /lib            (externa libs)     /vendor_1     /vendor_2   /tmp     /cache   /sql            (sql scripts maybe diagrams)   /scripts   /doc            (usually empty directory) 

Comments

Popular posts from this blog

c++ - How do I get a multi line tooltip in MFC -

asp.net - In javascript how to find the height and width -

c# - DataTable to EnumerableRowCollection -