Simple expenses controller
FinanceWizard is a WebApp made for make your expenses control easier. It's simple to use, interactive, and kinda beautiful (haha).
- The first step was to decide what technology to use. I wrote what were the project requirements and I decided to go with Nextjs because is the framework that I have been working in the past year and a half. It can serve satic HTML, what CRA does not support and I had a boilerplate that fit the problem (just needed some adjustments)
- After decide the framework, I had to decide how I would built the project. I decided to go first with storybook, to easily see each component isolated and as this project was meant to be open source, having a storybook would be a great feature if the project grew a lot and more and more people contribute to it.
- The next step would be to built the page itself and maybe fix some code
- Then, the final step, once everything is right, it would be to refactor some code in order to make it better and more readable.
First of all you need to have nodejs installed. So, if you don't have it, install with you package manager or download it from nodejs and install.
Now that you have nodejs installed, you need to clone this project into your device https://github.com/carlosberti/financeWizard.git.
First, install all dependencies:
npm install
# or
yarn installNow you are able to run the storybook server:
npm run storybook
# or
yarn storybookIt will open http://localhost:6006/ in your browser
To see the WebApp, run the development server:
npm run dev
# or
yarn devOpen http://localhost:3000/ in your browser
If you feel like you have something to add to the project, please read our Contributing Guide before submitting a Pull Request.

