(UNDER ACTIVE DEVELOPMENT. NOT EVEN IN 'BETA')
Manage your personal finances, budgets and track your expenses with ease. Get AI based suggestions to spend mindfully and save for your better future. Get regular updates on your spendings and forecast your expenses for coming months and years.
- PHP 8.2 or higher
- Composer
- Node.js and npm
- MySQL or any other supported database
Follow these steps to set up the project locally:
-
Clone the repository:
git clone https://github.com/Ibexoft/ibex-wallet.git cd ibex-wallet
-
Install PHP dependencies using Composer:
composer install
-
Set up your environment variables:
Copy the example environment file and create a new
.env
file:cp .env.example .env
Update the
.env
file with your database credentials and other necessary configuration. -
Generate an application key:
php artisan key:generate
-
Run database migrations & seeders:
Ensure your database is running and properly configured in the
.env
file, then run:php artisan migrate --seed
-
Install NPM dependencies:
npm install
-
Build frontend assets:
npm run build
-
Start the development server:
php artisan serve
The application will be available at
http://localhost:8000
.