Skip to content
This repository has been archived by the owner on Nov 25, 2020. It is now read-only.

Latest commit

 

History

History
45 lines (32 loc) · 964 Bytes

README.md

File metadata and controls

45 lines (32 loc) · 964 Bytes

README

它开发的初衷是能在 微信 百度轻应用 UC平台 上简单的搭建搭建一款单用户商城。

你可以自由的更改代码本地跑着玩,但因为所使用的 theme 是购买的,如果部署供人使用你可能会因为这个问题侵权哦。

Ruby and Rails version

  • ruby >= 2.1.1
  • rails >= 4.1.4

System dependencies

关键文件配置

touch config/secrets.yml
rake secret
then config your `secret_key_base`

数据库创建和初始化

先配置 config/database.yml

rake db:rebuild

配置开发习惯文件

此文件不纳入版本控制

touch /config/initializers/dev_config.rb
then edit it...

# example:
# Read: http://guides.rubyonrails.org/generators.html#customizing-your-workflow
SmartShop::Application.config.generators do |g|
  g.test_framework  false
  g.stylesheets     false
  # g.javascripts     false
  # g.helpers         false
end