我应该在rails项目中将原始图像(如psd`和`xcf`)放在哪里?

时间:2014-01-05 08:20:37

标签: ruby-on-rails

在rails项目中是否存在原始图像的常规位置,例如psdxcf文件?

如果它存在,我想遵循惯例。

2 个答案:

答案 0 :(得分:3)

您放置项目源和其他文件的位置没有约定。 但我也明白为什么将它们放在一起很重要,并在git中进行版本控制。 我在rails projects的根文件夹下创建了一个resources文件夹,并将它们放在那里,即your_app_root_folder/resources

答案 1 :(得分:2)

根据我上面的评论,我们发现将所有内容保存在一个集中位置非常有用,因此所有资源都会同时分支。我们通常会将这些额外的文件夹添加到每个Rails应用程序中:

myapp/resources/
----------------
   |___/creative = all creative resources for the site (i.e. PSDs, AIs, PNGs, etc.)
   |___/docs     = all documentation related to the project   
   |___/ux       = UX designs and US related stuff

我在Where to store additional Rails project files?博文

中解释了我们的方法