jlaloi / Bookmarks

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Bookmarks

Installation

type Bookmark @model {
  id: ID! @isUnique
  author: String
  createdDate: DateTime!
  duration: Int
  publicationDate: DateTime
  height: Int
  title: String
  thumbnail: String
  tags: [String!] @defaultValue(value: "[]")
  url: String!
  width: Int
}
  • Create the file ./src/config/keys.ts with below content :
export const API_KEY_FLICKR = '<YOUR FLICKR API KEY>';
export const API_KEY_GRAPHCOOL = '<YOUR GRAPHCOOL API KEY>';
export const API_KEY_VIMEO = '<YOUR VIMEO  API KEY>';
  • Install dependencies :
npm install
  • Start the application :
npm start

About


Languages

Language:TypeScript 88.0%Language:CSS 10.9%Language:HTML 1.1%