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