Demonstrates the use of cocoon gem for unobtrusive nested forms handling.
The project have been implemented to demonstrate how we can use cocoon gem to make nested forms in ruby on rails framework. The gem uses jQuery to make handling unobtrusive.
To setup project locally, follow below instructions.
Have ruby version ruby-2.7.2 installed as mentioned in Gemfile.
Install necessary dependencies.
# install dependencies mentioned in Gemfile
$ bundle install
# verification of already installed files in node_modules
$ yarn install --check-files
Create and Initialize database.
# migration of database
$ rails db:migrate
To start the server on localhost run the command below. The server will start on default port 3000.
$ rails s