/Bookmark_manager-1

Weekly pairing challenge from week 4 of the Makers course

Primary LanguageHTML

Bookmark_manager

User Stories

USER STORY 1

As a user So that I keep track of certain websites I would like to see a list of bookmarks

USER STORY 2

As a busy user So that I can save a website address I want to add the site's address and title to a bookmark manager

Link to the domain model: https://miro.com/app/board/uXjVO9sGhD0=/

HOW TO SET UP AND CONNECT TO DATABASE

  1. Connect to psql
  2. Create the database using the psql command CREATE DATABASE bookmark_manager;
  3. Connect to the database using the pqsl command \c bookmark_manager;
  4. Run the query we have saved in the file \i ./db/migrations/01_create_bookmarks_table.sql;

HOW TO SET UP AND CONNECT TO DATABASE TEST

  1. Connect to psql
  2. Create the database using the psql command CREATE DATABASE bookmark_manager_test;
  3. Connect to the database using the pqsl command \c bookmark_manager_test;
  4. Run the query we have saved in the file `\i ./db/migrations/01_create_bookmarks_table.sql;