Giter Site home page Giter Site logo

fico's Introduction

Fico

Run Status

Title Fico
Description Financial Control System
Author: Fabiano Góes
Date: Saturday, July 01, 2016
Locale: Guarulhos, SP, Brasil

Fico

Setup Development

Database

CREATE DATABASE fico CHARACTER SET utf8 COLLATE utf8_bin;

use FIco;

create table users (username varchar(50) not null primary key, password varchar(255) not null,    enabled boolean not null) engine = InnoDb;create table authorities (    username varchar(50) not null,    authority varchar(50) not null,    foreign key (username) references users (username),    unique index authorities_idx_1 (username, authority)) engine = InnoDb;
  1. Run App

  2. Populate Data Basic

insert into category(name) values('Alimentação');
insert into category(name) values('Lazer');
insert into category(name) values('Moradia');
insert into category(name) values('Salário');
insert into category(name) values('Saúde');
insert into category(name) values('Transporte');
insert into category(name) values('Combustível');
insert into category(name) values('Outros');

insert into bank(code, name) values('001', 'Banco do Brasil');
insert into bank(code, name) values('033', 'Banco Santander');
insert into bank(code, name) values('104', 'Caixa Econômica Federal');
insert into bank(code, name) values('237', 'Bradesco');
insert into bank(code, name) values('341', 'Itaú');
insert into bank(code, name) values('399', 'HSBC');

Libraries / Tools

License

MIT
Licensed under an MIT-style permissive license.

Open Source

Open Source

fico's People

Contributors

fabianogoes avatar felipeoliver avatar

Watchers

 avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.