127.0.0.1:8000 budget / master server / utils / constants.js
master

Tree @master (Download .tar.gz)

constants.js @masterraw · history · blame

module.exports = {
  account_type: {
    checking: 1,
    savings: 2,
    1: 'Checking',
    2: 'Savings',
  },
  default_conf: {
    minimum_available_balance_buffer: 1000,
    preffered_available_balance_buffer: 3000,
    contribute_to_savings_interval: 14,
    minimum_savings_contribution: 500,
  }
}