Github镜像

Jeremy Zheng bfa753e8ac :bug: add dependencies install step hace 4 años
.vscode 303630cf7e :tada: create empty project hace 4 años
app fca75b6e9c :heavy_plus_sign: add pundit hace 4 años
bin 303630cf7e :tada: create empty project hace 4 años
config 174bf6181d :heavy_plus_sign: add devise support hace 4 años
db 174bf6181d :heavy_plus_sign: add devise support hace 4 años
docker 7c723fe3d4 :pencil: merge docker usage hace 4 años
documents b600bd1b11 :heavy_plus_sign: add third gem hace 4 años
lib 303630cf7e :tada: create empty project hace 4 años
log 303630cf7e :tada: create empty project hace 4 años
public 303630cf7e :tada: create empty project hace 4 años
storage 303630cf7e :tada: create empty project hace 4 años
test 174bf6181d :heavy_plus_sign: add devise support hace 4 años
tmp 303630cf7e :tada: create empty project hace 4 años
vendor 303630cf7e :tada: create empty project hace 4 años
.browserslistrc 303630cf7e :tada: create empty project hace 4 años
.gitattributes 303630cf7e :tada: create empty project hace 4 años
.gitignore 303630cf7e :tada: create empty project hace 4 años
.ruby-version 303630cf7e :tada: create empty project hace 4 años
DAY-7.md bfa753e8ac :bug: add dependencies install step hace 4 años
Gemfile fca75b6e9c :heavy_plus_sign: add pundit hace 4 años
Gemfile.lock fca75b6e9c :heavy_plus_sign: add pundit hace 4 años
LICENSE 7ce3cd2090 Initial commit hace 6 años
README.md 92dc5431c2 :pencil: add shell command coments hace 4 años
Rakefile 303630cf7e :tada: create empty project hace 4 años
babel.config.js 303630cf7e :tada: create empty project hace 4 años
config.ru 303630cf7e :tada: create empty project hace 4 años
package.json 303630cf7e :tada: create empty project hace 4 años
postcss.config.js 303630cf7e :tada: create empty project hace 4 años
yarn.lock 303630cf7e :tada: create empty project hace 4 años

README.md

README

This README would normally document whatever steps are necessary to get the application up and running.

  • Clone code

    git clone

  • System dependencies

    # install gem dependencies
    bundle install
    
  • Database creation & initialization create database

    # migrate the database to latest
    rake db:migrate    
    # rolls the schema back to the previous version
    rake db:rollback
    # loads the seed data
    rake db:seed
    
  • Create a model & migration

    # plain model
    rails generate model Item --no-fixture --no-test-framework
    # plain migration
    rails generate migration AddHiToUsers
    
  • How to run the test suite

  • Services (job queues, cache servers, search engines, etc.)

  • Deployment instructions

Documents