Skip to content
This repository has been archived by the owner on Nov 24, 2023. It is now read-only.

A simple task tracking app written in Coffeescript that uses localStorage and chrome.storage.sync. Both a website and a Google Chrome extension.

License

Notifications You must be signed in to change notification settings

louislepper/super-simple-tasks

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

Super Simple Tasks

supersimpletasks.com

A very simple, 100% client-side tasks app that uses localStorage to save the list and Slip.js for reordering. This exists mainly so I can teach myself Coffeescript and better programming in general.

Features

  • Completely free (as in beer and in freedom)
  • No account required
  • Works offline through localStorage and chrome.storage.sync
  • 100% client-side
  • Easy to use
  • Drag and drop to reorder tasks (even works on mobile!)
  • Mobile support

Dependencies

Uses Coffeescript and Stylus along with a few other bits and pieces. Have a look in package.json to see what you'll need, and install with npm install.

Development

A Gruntfile with a 'dev' task is available for development.

Install grunt-cli (may need to use sudo)

npm install -g grunt-cli

Install the node prerequisites

npm install

Run 'grunt dev' to watch for changes. Doesn't uglify.

grunt dev

Build everything from scratch. Uglifies and cache busts.

rm -r public/
grunt build

Start server

cd public/
grunt connect

Now visit localhost:9001 to see Super Simple Tasks.

Deployment

All development happens on the 'develop' branch. Master is for main releases only. The server pulls down from GitHub every 10 minutes. There is no compilation on the server so everything must be compiled and minified locally before a release.

  • 'master' = supersimpletasks.com
  • 'develop' = dev.supersimpletasks.com

Release workflow

So I don't forget :)

  1. Manifest.json for Chrome Web Store has an updated version number
  2. app.coffee has an updated version number
  3. package.json has updated version number
  4. Delete public/ and run 'grunt build'
  5. Create a .zip of /public for the Chrome Web Store
  6. Test .zip in Chrome Apps & Extensions Developer Tool
  7. Commit and push to develop
  8. Pull request into master
  9. For a major release, create a GitHub release and tags with changelog
  10. Upload .zip file to Chrome Web Store developer dashboard

About

A simple task tracking app written in Coffeescript that uses localStorage and chrome.storage.sync. Both a website and a Google Chrome extension.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • HTML 36.9%
  • CoffeeScript 35.4%
  • CSS 23.0%
  • JavaScript 4.7%