This README would normally document whatever steps are necessary to get the application up and running.
Rails is a web application development framework written in the Ruby programming language. It is designed to make programming web applications easier by making assumptions about what every developer needs to get started. It allows you to write less code while accomplishing more than many other languages and frameworks.
Things you may want to cover:
-
For this Project, you will need:
- Ruby 3.2 or newer
- Rails 8.0.0 or newer
- A code editor:VScode
-
System dependencies
-
Configuration start: bin/rails server migrate: bin/rails migrate
-
Database creation
- bin/rails generate model Product name:string
- Createing Records: Product.new(name: "")
- Querying Records: Product.all
- Filtering & Ordering Records: Product.where(name: "")
- Finding Records: Product.find()
- Updating Records: product.update(name: "")
- Deleting Records: product.destory
-
Database initialization bin/rails db:migrate
-
How to run the test suite
-
Services (job queues, cache servers, search engines, etc.)
-
Deployment instructions
-
...