As a developer, I need to ensure that my connections to firebase work and that items display correctly on each page. This data will act both as placeholder and as the initial items displayed on the page.
AC
WHEN I navigate to each section of this application
THEN I should see unique data on each page
AND that data ensures my connection to firebase is correct.
Dev Notes
at the top directory in VSCode, create a db folder with four files: !base.json, users.json, allPostings.json, comments.json
Developer Story
As a developer, I need to ensure that my connections to firebase work and that items display correctly on each page. This data will act both as placeholder and as the initial items displayed on the page.
AC
WHEN I navigate to each section of this application THEN I should see unique data on each page AND that data ensures my connection to firebase is correct.
Dev Notes
at the top directory in VSCode, create a
db
folder with four files:!base.json
,users.json
,allPostings.json
,comments.json
build out Seed Data in this format:
base.json
: { "users": "users", "allPostings": "allPostings", "comment": "comments" }users.json
: { "id": "id", "firstName": "firstName", "lastName": "lastName", "uid": "uid", "password": "password" }allPostings.json
: { "id": "id", "subjectLine": "subjectLine", "bodyText": "bodyText", "uid": "uid" }comments.json
: { "id": "id", "postId": "postId", "content": "content", "uid": "uid" }