https://github.com/twknab/ror_meal_planner
A small ruby on rails based Meal Planner app to help learn Rails while also being better organized for weekly dinners :)
https://github.com/twknab/ror_meal_planner
meal-planner ruby-on-rails
Last synced: 5 months ago
JSON representation
A small ruby on rails based Meal Planner app to help learn Rails while also being better organized for weekly dinners :)
- Host: GitHub
- URL: https://github.com/twknab/ror_meal_planner
- Owner: twknab
- Created: 2018-07-15T05:22:15.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2018-07-15T05:29:32.000Z (about 7 years ago)
- Last Synced: 2025-02-16T18:41:39.465Z (8 months ago)
- Topics: meal-planner, ruby-on-rails
- Language: Ruby
- Size: 20.5 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# TODO
Things to do:
* User login and registration with validations
* Create new meal with validations
* Read all meals
* Update meal
* Delete meal
* User Logout
* If time: Add in bootstrap
Plan out your database in advance. Consider that you'll need at the very least User and Meal models, and perhaps a MealPlan model as well depending upon how you wish to accomplish this application. Something to think about before getting started. You can use the default SQLite db for now if you'd like, but be sure to use the ActiveRecord ORM when performing your actions.