Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/mxvsh/product-invoice
Add products and generate invoices.
https://github.com/mxvsh/product-invoice
invoice nextjs product typescript webapp
Last synced: about 2 months ago
JSON representation
Add products and generate invoices.
- Host: GitHub
- URL: https://github.com/mxvsh/product-invoice
- Owner: mxvsh
- Created: 2022-10-27T06:06:25.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2022-11-02T17:16:07.000Z (about 2 years ago)
- Last Synced: 2024-02-24T16:05:00.987Z (11 months ago)
- Topics: invoice, nextjs, product, typescript, webapp
- Language: TypeScript
- Homepage:
- Size: 635 KB
- Stars: 3
- Watchers: 1
- Forks: 2
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Product Invoice
The application comes with a web based user interface which helps you to generate simple invoice of products you have added to the list.
# Screenshots
| | |
| ------------- | ------------- |
| | |# Roadmap
- [x] Create category
- [x] Calculate product amount
- [ ] Generate invoice
- [ ] Printable invoice (or PDF)
- [ ] Add options inside settings
- [ ] Responsive design
- [ ] Discount option# Development
In order to work on this project, you must follow these steps.
## Step 1
Clone the repository to your computer using the following command.
`git clone https://github.com/xencodes/product-invoice`
## Step 2
Run the installation command to install all the dependencies required in order to run this application. Since
`pnpm install`
## Step 4
Since we are using Prisma, we must then set up the database, which by default uses a SQLite database. To create database structure, use the following command.
`npx prisma db push`
## Step 5
Start the server
`pnpm nx serve`