Github镜像

Jeremy Zheng db1815c3e1 :pencil: add day-7 il y a 5 ans
.vscode 303630cf7e :tada: create empty project il y a 5 ans
app c350ca8e6e :heavy_plus_sign: add i18n support il y a 5 ans
bin 303630cf7e :tada: create empty project il y a 5 ans
config 174bf6181d :heavy_plus_sign: add devise support il y a 5 ans
db 174bf6181d :heavy_plus_sign: add devise support il y a 5 ans
docker 7c723fe3d4 :pencil: merge docker usage il y a 5 ans
documents b600bd1b11 :heavy_plus_sign: add third gem il y a 5 ans
lib 303630cf7e :tada: create empty project il y a 5 ans
log 303630cf7e :tada: create empty project il y a 5 ans
public 303630cf7e :tada: create empty project il y a 5 ans
storage 303630cf7e :tada: create empty project il y a 5 ans
test 174bf6181d :heavy_plus_sign: add devise support il y a 5 ans
tmp 303630cf7e :tada: create empty project il y a 5 ans
vendor 303630cf7e :tada: create empty project il y a 5 ans
.browserslistrc 303630cf7e :tada: create empty project il y a 5 ans
.gitattributes 303630cf7e :tada: create empty project il y a 5 ans
.gitignore 303630cf7e :tada: create empty project il y a 5 ans
.ruby-version 303630cf7e :tada: create empty project il y a 5 ans
DAY-7.md db1815c3e1 :pencil: add day-7 il y a 5 ans
Gemfile c350ca8e6e :heavy_plus_sign: add i18n support il y a 5 ans
Gemfile.lock 1e4781fc9e :arrow_up: upgrade gems il y a 5 ans
LICENSE 7ce3cd2090 Initial commit il y a 6 ans
README.md db1815c3e1 :pencil: add day-7 il y a 5 ans
Rakefile 303630cf7e :tada: create empty project il y a 5 ans
babel.config.js 303630cf7e :tada: create empty project il y a 5 ans
config.ru 303630cf7e :tada: create empty project il y a 5 ans
package.json 303630cf7e :tada: create empty project il y a 5 ans
postcss.config.js 303630cf7e :tada: create empty project il y a 5 ans
yarn.lock 303630cf7e :tada: create empty project il y a 5 ans

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

    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

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

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

  • Deployment instructions

Documents