The Budget App is a mobile web application build on Ruby on Rails where you can manage your budget: you have a list of transactions associated with a category, so that you can see how much money you spent and on what.
The design was made based on the Snapscan layout made by Gregoire Vella on Behance.
Back-end
Front-end
- Use of Rails framework.
- MVC architecture.
- Save and retrieve information from a PostgreSQL database.
- Log in and registration with Devise gem.
- Integration and unit tests with Capybara and RSpec.
- Authorization with CanCanCan gem.
- Find and solve N + 1 problems with Bullet gem.
In order to run this project you need to have:
- Installed Ruby (v 3.2.2).
- Installed PostgreSQL.
- If you're using Windows, have installed WSL.
- If you're using MacOS, an option is using UTM.
To clone this repository to your desired folder, run the following command:
git clone git@github.com:Luffytaro22/Budget-app.git
To open a local server, type the following command:
rails server
To install all the ruby gems, use the following command:
bundle install
To install the npm dependencies, use the following command:
npm install
After installing the gems, run this command to create and migrate a database:
rails db:create db:migrate
To run the RSpec unit and integration tests, use the following command:
rspec
You can deploy this project from the following link:
👤 Manuel Sánchez
- GitHub: @Luffytaro22
- LinkedIn: Manuel Sánchez
- Allow the user to delete and modify their categories and transactions.
- Implement an email confirmation.
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
If you like this project please give it a star ⭐️
I would like to give credits to the following:
- Microverse for this readme template.
- Gregoire Vella on Behance for his beautiful UI layout.
This project is MIT licensed.