This is a simple Ruby on Rails app for learning purpose.
-
User
- Listing
- Creation
- Edition
- Deletion
-
Photo
- Listing on the user's profile
- Creation (link reference)
- Edition
- Deletion
Download of clone the repo
git clone https://github.com/NicolasMica/RoR-learning.git demo
Install the dependencies
cd demo
bundle install
Migrate & seed the database
rake db:migrate && rake db:seed
Start the server and navigate to http://localhost:3000
rails server