Skip to content
saberma edited this page Dec 14, 2011 · 1 revision

开发过程常用命令

生成器

rails g integration_test 'foo' --integration-tool=rspec # 生成集成测试文件
rails g controller 'shop/blogs' --view-specs false # 生成控制器

vim

替换hash写法

:a => 'something'
a: 'something'

nginx

调试

./configure --with-debug
error_log logs/error_logs debug;

配置

daemon  off;

命令

#reopen reload stop quit
sudo nginx -s reopen

postgresql

命令

su - postgres
psql
\c shopqi_production # 连接数据库
\d # 显示表
Clone this wiki locally