https://github.com/0xcryptoangel/ror-startkit
Startkit for RoR development
https://github.com/0xcryptoangel/ror-startkit
ruby-gem ruby-on-rails tailwindcss
Last synced: 4 months ago
JSON representation
Startkit for RoR development
- Host: GitHub
- URL: https://github.com/0xcryptoangel/ror-startkit
- Owner: 0xCryptoAngel
- Created: 2025-02-06T10:40:40.000Z (over 1 year ago)
- Default Branch: main
- Last Pushed: 2025-03-19T09:53:22.000Z (over 1 year ago)
- Last Synced: 2025-03-19T10:38:27.422Z (over 1 year ago)
- Topics: ruby-gem, ruby-on-rails, tailwindcss
- Language: Ruby
- Homepage:
- Size: 28.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# README
This README would normally document whatever steps are necessary to get the
application up and running.
Things you may want to cover:
- Ruby version
- System dependencies
- Configuration
- Database creation
- Database initialization
- How to run the test suite
- Services (job queues, cache servers, search engines, etc.)
- Deployment instructions
- ...
# Run Ruby on Rails Project
`logger_thread_safe_level.rb`
`require "logger"`
# run command
`bin/rails server`
# model generating command
`bin/rails generate model model_name colum_name:colum_type`
# DB migrate command
`bin/rails db:migrate // undo the last migration => bin/rails db:rollback`
## Tailwind CSS configuration
`bin/bundle add tailwindcss-ruby`
`bin/bundle add tailwindcss-rails`
`bin/rails tailwindcss:install`
`bin/dev`