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
Post a Comment