|
|
il y a 4 ans | |
|---|---|---|
| .vscode | il y a 4 ans | |
| app | il y a 4 ans | |
| bin | il y a 4 ans | |
| config | il y a 4 ans | |
| db | il y a 4 ans | |
| docker | il y a 4 ans | |
| documents | il y a 4 ans | |
| lib | il y a 4 ans | |
| log | il y a 4 ans | |
| public | il y a 4 ans | |
| storage | il y a 4 ans | |
| test | il y a 4 ans | |
| tmp | il y a 4 ans | |
| vendor | il y a 4 ans | |
| .browserslistrc | il y a 4 ans | |
| .gitattributes | il y a 4 ans | |
| .gitignore | il y a 4 ans | |
| .ruby-version | il y a 4 ans | |
| DAY-7.md | il y a 4 ans | |
| Gemfile | il y a 4 ans | |
| Gemfile.lock | il y a 4 ans | |
| LICENSE | il y a 6 ans | |
| README.md | il y a 4 ans | |
| Rakefile | il y a 4 ans | |
| babel.config.js | il y a 4 ans | |
| config.ru | il y a 4 ans | |
| package.json | il y a 4 ans | |
| postcss.config.js | il y a 4 ans | |
| yarn.lock | il y a 4 ans |
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