Welcome to the Fineman, an open-source tool designed to help you manage your finances effortlessly. This web application allows you to organize your expenses with a user-friendly dashboard.
Get a comprehensive view of your financial health with our intuitive dashboard. Easily monitor your expenses.
One of the standout features of our app is Collections. Organize your finances by creating collections tailored to your needs.
- Create Collections: Customize your financial organization by creating different collections, such as "Vacation Fund," "Emergency Savings," or "Gadget Upgrade."
- Set Target Price: Define financial goals by setting a target price for each collection. Monitor your progress and stay motivated to reach your targets.
Add transactions to keep track of your spending. Review your transaction history to identify areas for improvement.
- Visit the XAMPP official website and download the version for your operating system.
git clone https://github.com/andr3j123/fineman.git
- Move the contents to the htdocs directory inside your XAMPP installation directory. The default path for Windows is usually:
C:\xampp\htdocs\fineman
- Start Apache and MySQL:
- Open the XAMPP Control Panel and start the Apache and MySQL services.
- Create a Database:
- Open your web browser and go to http://localhost/phpmyadmin.
- Click on the "Databases" tab, enter a name for your database
fineman
, and click "Create."
- Import the Database Structure:
- In phpMyAdmin, select your newly created database.
- Click on the "Import" tab, and choose the SQL file included in the project repository
fineman.sql
. - Click "Go" to import the database structure.
- Edit
./backend/dbConn.php
to match your XAMPP setup (By default this should work).
$servername = "localhost";
$username = "root";
$password = "";
$dbName = "fineman";
Access the Application:
- Open your web browser and go to http://localhost/fineman.
- The application should now be running. Congrats!
We welcome contributions from the community! If you have a feature request, bug report, or would like to contribute code, please open an issue or submit a pull request.
This project is licensed under the GNU GENERAL PUBLIC LICENSE