Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Rails Style Guide | 6,342 | 8 days ago | 15 | |||||||
A community-driven Ruby on Rails style guide | ||||||||||
Rubocop Rails | 685 | 537 | 380 | 3 days ago | 63 | July 07, 2022 | 140 | mit | Ruby | |
A RuboCop extension focused on enforcing Rails best practices and coding conventions. | ||||||||||
Souls | 329 | 5 months ago | 733 | October 14, 2022 | 3 | apache-2.0 | Ruby | |||
SOULs 🔥 Build Serverless Apps faster like Rails. Powered by Ruby GraphQL, Active Record, RSpec, RuboCop, and Google Cloud. | ||||||||||
Rails Base | 189 | a year ago | 15 | Ruby | ||||||
Skeleton for new Rails based projects. | ||||||||||
Expertiza | 175 | 8 days ago | 116 | mit | Ruby | |||||
Expertiza is a web application through which students can submit and peer-review learning objects (articles, code, web sites, etc). The Expertiza project is supported by the National Science Foundation. | ||||||||||
Kitsu Server | 171 | a month ago | 27 | apache-2.0 | Ruby | |||||
:steam_locomotive: Rails API server for Kitsu | ||||||||||
Granite | 157 | 1 | 20 hours ago | 29 | January 31, 2023 | 3 | mit | Ruby | ||
Business Actions architecture for Rails apps | ||||||||||
Rubocop Rails_config | 145 | 64 | 63 | a month ago | 96 | August 12, 2022 | 2 | mit | Ruby | |
RuboCop configuration which has the same code style checking as official Ruby on Rails. | ||||||||||
Devise Doorkeeper Cancan Api Example | 124 | 6 years ago | Ruby | |||||||
rails 4, rails-api, devise, doorkeeper, oauth, cancancan, rspec, puma, vcr, factory_girl, reqres_rspec, pg, dotenv, rack-cors, active_model_serializers, rubocop | ||||||||||
Rubocop Linter Action | 81 | 3 years ago | n,ull | mit | Ruby | |||||
Rubocop Linter Action: A GitHub Action to run Rubocop against your code! |
admin/
urlsudo apt install imagemagick
sudo apt install libmysqlclient-dev
Ruby 2.4.0 or newer Rails 5.2.0 or newer
bundle install
rake db:migrate
rails server
See on http://localhost:3000
First registered user will be admin
Remove config/credentials.yml.enc
Reference config/credentials.yml.example
and run rails credentials:edit
to edit your application config
rm config/credentials.yml.enc
rails credentials:edit
# rake secret
secret_key_base: 73fd0783500cc42096f163859b5062376ccb90416a9bf920c89e43981986493029d20b58e088fc04444d571829381aa5e246ce364b9c16830128eb10757e65a9
host: bamboofox.nctucs.net
mailer_sender: [email protected]
password: password
facebook_id: facebook_id
facebook_secret: facebook_secret
github_id: github_id
github_secret: github_secret
google_id: google_id
google_secret: google_secret
nctu_id: nctu_id
nctu_secret: nctu_secret
bundle install
RAILS_ENV=production rake db:reset DISABLE_DATABASE_ENVIRONMENT_CHECK=1
RAILS_ENV=production rake assets:precompile
rake rubocop
rake rubocop:auto_correct
rake rails_best_practices
find . -name '*.erb' | xargs htmlbeautifier