Getting Started
Goals
Steps
Step 1
Type this in the shell:rails new suggestotronStep 2
Type this in the shell:cd suggestotron/Step 3
Type this in the shell:code .
File/Folder Purpose app/ Contains the controllers, models, and views for your application. You will do most of your work here. config/ Configure your application's runtime rules, routes, database, and more. db/ Shows your current database schema, as well as the database migrations. public/ The only folder shown to the world as-is. If you put files in here, they will be served directly on the web without any processing by Rails. Us it for your sites logo or robots.txt file
Next Step:
Go on to Add The Project To A Git Repo