Table Of Contents
This is an invoice maker built with Next JS and Sass (a CSS preprocessor). It takes information from the user and uses it to make the invoice. The user can then download the invoice to send to a client.
This a brief guide on setting this project up locally.
If you do not have npm installed enter the command below into command prompt if you are on windows or into terminal if you are a mac user.
$ npm install npm@latest -g
With npm installed you can then clone (download a copy) of this repository (entire project and history):
# Clone this repository
$ git clone https://github.com/hamsame/invoice-maker/
# Remove current origin repository
$ git remote remove origin
Enter the commands beneath to start coding
# Install dependencies
$ npm install
# Start local development server
$ npm start