ryu1kn / Invoice_Generator

Simple app for automating your invoices

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invoice_Generator

Simple app for automating your invoices

app.js
database structure
users{id, name, email, password}
site{s_name, address}
employer{E_name, email,
user_site{US_ID, U_ID, S_name}
user_employer{UE_ID, U_ID, E_name}
shift{S_ID, S_time, E_time, H_worked, day}
site_shift{SS_ID, S_name, S_ID, H_rate, id}
user_shift{US_ID, id, S_ID}

Prerequisite

  • Node.js
  • MySQL

How to start a service

  1. Create DB (Only for the first time)

    > CREATE DATABASE my_invoice;
    > \quit
  2. Install dependencies

    $ npm install
  3. Start a service

    $ node app
  4. Then open the page in the browser: http://localhost:8080

About

Simple app for automating your invoices


Languages

Language:HTML 61.2%Language:JavaScript 38.8%