Last active
August 29, 2015 13:55
-
-
Save galarant/8694541 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
project_root/ | |
... | |
pro_soda/ | |
... | |
admin/ | |
frontend/ | |
app/ | |
components/ | |
some_global_component.js | |
modules/ | |
some_global_module.js | |
templates/ | |
layouts/ | |
main.html | |
some_global_site_component/ | |
some_base_template.html | |
assets/ | |
css/ | |
main.css | |
main.styl | |
img/ | |
global_image.png | |
js/ <=== maybe this will go away because we're using bower?? | |
libs/ | |
require.js | |
jquery.js | |
... | |
plugins/ | |
jquery.color.js | |
... | |
vendor/ <== can we just get rid of this? | |
node_modules/ | |
tasks/ | |
test/ | |
ad_ops/ | |
... | |
frontend/ | |
app/ | |
components/ | |
some_app_specific_component.js | |
modules/ | |
some_app_specific_module.js | |
templates/ | |
layouts/ | |
some_app_global_layout.html | |
some_app_component/ | |
component_template.html | |
assets/ | |
css/ | |
ad_ops_styles.css | |
ad_ops_sytles.styl | |
img/ | |
some_app_specific_img.png | |
js/ <== probably don't need this if we're using bower | |
libs/ | |
some_app_specific_lib.js | |
plugins/ | |
some_app_specific_lib.plugin.js | |
node_modules/ | |
tasks/ | |
test/ |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment