Skip to content

Instantly share code, notes, and snippets.

View austonpramodh's full-sized avatar

Auston Pramodh Barboza austonpramodh

View GitHub Profile
@austonpramodh
austonpramodh / jwtRS256.sh
Last active November 25, 2020 14:33 — forked from Holger-Will/jwtRS256.sh
generate public private key pair (RSA RS256) for use with koa-jwt jasonwebtoken etc.
# generate private key
openssl genrsa -out jwtRS256.key 2048
# extatract public key from it
openssl rsa -in jwtRS256.key -pubout > jwtRS256.key.pub

There are two sections to the app, settings and expense dashboard.

User can define a budget in settings in addition to defining different categories in which expenses can be made. Both of these options are in settings page.

Once this setup is done, user can add expenses in any of the categories. A summary page shows the expense trend.

Must have features:

  1. Add expense
  2. Edit Expense
  3. Delete Expense ( soft delete, show striked or some other indication that it's deleted, don't remove the entry from the database)