Nicnry / myWallet

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

myWallet

This app is build with ionic 4

Installation

  1. git clone this repo
  2. cd myWallet
  3. npm install
  4. ionic serve --lab

Enjoy !

API

Example JSON format :

{
  "accounts": [
    {
      "id": 1,
      "name": "PostFinance",
      "favorite": true,
      "value": 100,
      "transactions": [
        { 
          "id": 1,
          "value": -200
        },
        { 
          "id": 2,
          "value": 300
        }
      ]
    },
    {
      "id": 2,
      "name": "UBS",
      "favorite": false,
      "value": 1100,
      "transactions": [
        { 
          "id": 1,
          "value": -200
        },
        { 
          "id": 2,
          "value": 300
        },
        { 
          "id": 3,
          "value": -4000
        }
      ]
    }
  ]
}

About


Languages

Language:TypeScript 74.9%Language:HTML 16.6%Language:CSS 5.4%Language:JavaScript 3.1%