0

我对 Web 开发和使用 Ubuntu 12.04 进行开发真的很陌生。

在创建这个项目时,我是否需要上传 Rails 创建的所有文件,如配置、日志?

您的回答将不胜感激。

4

2 回答 2

0

是的,您几乎需要所有由 rails 生成的文件,例如配置文件,但不需要日志。

于 2013-03-06T01:32:16.760 回答
0

您需要根据需要在 localhost 中运行应用程序所需的文件。当前日志文件可能来自在 localhost 环境中使用该应用程序,因此可以将它们排除在外。

请注意,如果您要上传到使用 postgresql 的 Heroku 等网站,如果您使用其他数据库系统,您的 Gemfile 将需要指标。例如:

#Gemfile

# if using sqlite3 in your local environment during development
group :development do
  gem 'sqlite3'
end

# if using Heroku, postgresql is used, and the 'production' group 
# will be automagically used
group :production do
  gem 'pg'
end
于 2013-03-06T02:12:50.587 回答