eduardoluisrodriguez / invoice

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Invoice App

An application meant to facilitate the process of writing up a traditional invoice. Keeping track of goods sent and services provided should be a computer's job.

Features

  • CRUD on

    • products
    • documents
    • providers
  • Keep track of the actions performed throughout the application

  • Generate invoice from documents in PDF/Excel format

Getting Started

cd client/ && npm i && cd - && cd server/ && npm i && cd -
cp server/.env.example server/.env
# Then, add the information needed
# Open a new terminal tab (CTRL + SHIFT + T)
cd client/ && npm run serve
cd server/ && npm run dev

App structure

.
├── client
│   ├── dist
│   ├── src
│   ├── babel.config.js
│   ├── package.json
│   ├── package-lock.json
│   └── vue.config.js
├── server
│   ├── controllers
│   ├── db
│   ├── routes
│   ├── services
│   ├── utils
│   ├── app.js
│   ├── .env
│   ├── .env.example
│   ├── package.json
│   └── package-lock.json
└── readme.md

About

License:MIT License


Languages

Language:Vue 50.6%Language:JavaScript 47.4%Language:CSS 1.8%Language:HTML 0.3%