Open Carly-Schaaf opened 5 years ago
Hey Trevor - looks like you're off to a good start! Read my comments above to update your proposal when you get a chance. Sorry to reference to my proposal so much, but I think an example could be useful. Feel free to ask any questions as a comment below - or slack me!
Wiki Page Home
MVP List
Comments
You need 2 more MVPs, at least one of those needs to be the production README you'll do on the last day. Will you have a search functionality for any of your MVPs? If so, you could make that your last MVP.
Database Schema
[x] Contains correct datatypes
[x] Contains appropriate constraints/details
[x] Contains bullet points after the table that state which foreign keys will reference to which table, or references to the associations which will be made
[x] Correctly formatted
back_ticked
back_ticked
Comments
You need to reformat your schema so that each of your tables are in actual table format (e.g. https://github.com/Carly-Schaaf/adventureBnB/wiki/Database%20Schema). You also need to include your db constraints as columns and model-level associations in comments below each table. Also - all tables should be pluralized.
User
Providers
type
column here? It may be useful if you want to include a search functionality.Clinic
address
should be broken up into multiple rows (e.g.address_1
,address_2
,state
,zipcode
,country
)Sample State
```javascript...```
). This will display the state as a code block instead of a giant line of textentities
session
errors
(here or inui
)ui
(if needed)comments
inside ofposts
Comments
id
, just as you do for appointments, shifts, etc.Backend Routes
snake_case
GET likes
api endpoint because that info comes through the post showComments
PATCH
and have a wildcard).Frontend Routes
camelCase
inline coding text
(backticks)Comments
appointment/new
- and your appointment show page route should be something likeappointment/:appointmentId
. For clarity, I think you should nest each component under the route that will render it. Take a look at these routes for comparison: https://github.com/Carly-Schaaf/adventureBnB/wiki/Frontend%20Routes%20and%20Components.