Skip to content

cosmicjs/sticky-notes

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Sticky Notes

Image

A note-taking app built using React, Redux and powered by Cosmic JS. It connects to the Cosmic JS API to add / edit / delete notes as well as attach media.

Getting Started

Log in to Cosmic JS and create a Bucket to store notes. Then clone the codebase locally:

git clone https://github.com/cosmicjs/sticky-notes
cd sticky-notes
yarn (or npm i)

Run in development

npm run build-dev

In another terminal window run:

npm run start-dev

Run in production

npm run start-dev

Configure

Edit the client/config.js file to make sure it's connected to your Cosmic JS Bucket with the correct read / write keys (if applicable).

export default {
  bucket: {
    slug: process.env.COSMIC_BUCKET || 'sticky-notes',
    read_key: '',
    write_key: '',
  }
}

Releases

No releases published

Packages

No packages published