For the first solo project with CodeClan, we had to create a CRUD web app using Ruby and Sinatra with Postgres database, from a choice of briefs. I opted to do the record store inventory app.
Over the next week you have the chance to consolidate and expand on everything you have learned:
- Ruby fundamentals
- TDD (where appropriate)
- OOP
- Web Programming ( REST/MVC )
- Databases with CRUD actions
The owner of Keith's Record Store wants an app which will help him keep on top of his store inventory. He does not want an app that customers will see, but he will use to check stock levels and see what he needs to order soon.
You should be able to add stock, which would have an Artist and Album as well as the quantity available.
- Create albums with the quantity that are in stock
- Create artists
- Show an inventory page listing albums and artists
- Show a stock level for the inventory items e.g. High/Medium/Low
- Add a buy and sell price to each stock item
- Calculate the possible markup on items and show on inventory page
- Add a genre to an Album
- Any other ideas you might come up with