Also Kate asked me to do this:
For auto-reload to work, do this:
See for more : https://dev.to/a_chris/rails-live-reloading-assets-1k9e
Starter Kit to build modern Rails applications fast
Powered by:
Rails v7 application template ready to start building your next project, with a pre-configured modern front-end stack and some extras:
Clone this repository (or use the GitHub template button), then cd
into the folder and run:
> bin/setup
This is a personal memo to my installation since its being ACTUIVELY DEVELOPED :)
git-privatize
to get the personal .envrc
.puffin-tours
under R&K gmail account (note it had 1$ credit which is now expired). Some links:Start the development server:
> bin/dev
# Acts as Votable
bundle install
rails generate acts_as_votable:migration
# add '[6.0]' to migration (gem is OLD!)
rake db:migrate
# error, should have been article_id, not post_id, too much cut/paste :)
rails g scaffold comment body:text post_id:integer parent_id:integer vote:integer internal_notes:text active:boolean