Build an app that lets users share parking spaces.
Users can assign their cars to any space.
Cars belong to a user.
Spaces have many cars and cars have many spaces.
- Rails CRUD app. At least one nested route: /spaces/:id/cars
- When you create cars, associate them with a user and a space.
- Users can login
-
Add bootstrap to your app
-
Add the ability to associate an existing car to an existing space.
-
Add the ability to associate an existing space to an existing car.
-
Add other nested routes to your app:
/spaces/:id/users
/users/:id/spaces
Build a full CRUD pokedex.
-
Pokemon have many types and types belong to many pokemon.
-
Pokemon belong to a user.
- Add the ability for a user to capture a pokemon.
- Edit the seeds.rb file to seed the DB with pokemon and types: https://github.com/wdi-sg/pokedex-rails/blob/master/db/seeds.rb
- Add bootstrap to your app.
- Change the model so that pokemon also belong to many users.
- Add other nested routes:
/users/:id/pokemon
/pokemon/:id/users