|
|
hace 4 años | |
|---|---|---|
| .vscode | hace 4 años | |
| app | hace 4 años | |
| bin | hace 4 años | |
| config | hace 4 años | |
| db | hace 4 años | |
| docker | hace 4 años | |
| documents | hace 4 años | |
| lib | hace 4 años | |
| log | hace 4 años | |
| public | hace 4 años | |
| storage | hace 4 años | |
| test | hace 4 años | |
| tmp | hace 4 años | |
| vendor | hace 4 años | |
| .browserslistrc | hace 4 años | |
| .gitattributes | hace 4 años | |
| .gitignore | hace 4 años | |
| .ruby-version | hace 4 años | |
| DAY-7.md | hace 4 años | |
| Gemfile | hace 4 años | |
| Gemfile.lock | hace 4 años | |
| LICENSE | hace 6 años | |
| README.md | hace 4 años | |
| Rakefile | hace 4 años | |
| babel.config.js | hace 4 años | |
| config.ru | hace 4 años | |
| package.json | hace 4 años | |
| postcss.config.js | hace 4 años | |
| yarn.lock | hace 4 años |
This README would normally document whatever steps are necessary to get the application up and running.
Clone code
# install gem dependencies
bundle install
Database creation & initialization

# 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