https://github.com/ruthmoog/makers_bookmark-manager-friday
https://github.com/ruthmoog/makers_bookmark-manager-friday
Last synced: about 2 months ago
JSON representation
- Host: GitHub
- URL: https://github.com/ruthmoog/makers_bookmark-manager-friday
- Owner: ruthmoog
- Created: 2019-06-21T13:12:57.000Z (almost 6 years ago)
- Default Branch: master
- Last Pushed: 2022-12-01T01:28:32.000Z (over 2 years ago)
- Last Synced: 2025-02-11T11:42:26.770Z (3 months ago)
- Language: Ruby
- Size: 27.3 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 5
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Bookmark Manager
Summary of our project:
We are building a web app which stores bookmarks in a bookmark manager using databases.## User Stories
```
As a person,
So that I can see bookmarks I have logged,
I’d like to see a list of bookmarks on my screen.
``````
As a person,
So that I can keep URL's I like,
I’d like to add bookmarks to my bookmark manager.
```| Noun | Verb |
|-----|-----|
| Person | See |
| Bookmark | - |
| List | _ |
| Screen | - |Bookmark <— See —> List
## How to create a database using PSQL (download Postgresql)
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 01_create_bookmarks_table.sql
5. Run the query we have saved in the file 02_add_title_to_bookmarks.sql## Database for Testing
1. connect to psql using the command line command `psql`.
0. create a database for testing using `CREATE DATABASE bookmark_manager_test;`.
0. Run the query we have saved in the file 01_create_bookmarks_table.sql
0. Run the query we have saved in the file 02_add_title_to_bookmarks.sql