Giter Site home page Giter Site logo

bookmark_manager_challenge's Introduction

Bookmark Manager Challenge

https://github.com/makersacademy/course/tree/master/bookmark_manager

User Stories

As a user
So that I can quickly go to web sites I regularly visit
I would like to *see a list* of links (on the homepage)
As a user
So that I can save a new website link
I would like to *add a address url and title* to my bookmark manager
As a user
So that I can organise my links into different categories for ease of search
I would like to *add tags to the links* in my bookmark manager
As a user
So that I can quickly find links on a particular topic
I would like to *filter links by tag*

#Checking contents of DB:

heroku pg:psql
shereenapp::DATABASE=> \list
shereenapp::DATABASE=> heroku pg:psql\dt
              List of relations
 Schema |   Name    | Type  |     Owner
--------+-----------+-------+----------------
 public | link_tags | table | tqzkbazznlojsi
 public | links     | table | tqzkbazznlojsi
 public | tags      | table | tqzkbazznlojsi
(3 rows)


shereenapp::DATABASE=> SELECT * FROM links;
 id |  title  |        url        | link_id | link_title | link_url
----+---------+-------------------+---------+------------+----------
  1 | RT News | http://www.rt.com |       1 |            |
  2 | RT News | http://www.rt.com |       2 |            |
(2 rows)

shereenapp::DATABASE=> SELECT * FROM tags;
 tag_id | tag_title | id | title
--------+-----------+----+-------
      1 |           |  1 | News
(1 row)

shereenapp::DATABASE=> SELECT * FROM link_tags;
 link_id | tag_id
---------+--------
       1 |      1
       2 |      1

bookmark_manager_challenge's People

Contributors

bnzene avatar shezdev avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.