budgetly is a mobile web application 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.
Database
- A login page.
- A registration page.
- A Transaction page
- A Category page
To get a local copy up and running, follow these steps.
In order to run this project you need:
ruby >= 3.2.0
rails >= 7.0
postgres >- 15.3
Clone this repository to your desired folder:
git clone https://github.com/batoolfatima2135/budgetly
You need to setup database for these project
development = budgetly_development
test = budgetly_App_test
production = budgetly_App-production
or you can use your own database and change the config/database.yml
default: &default
adapter: postgresql
encoding: unicode
pool: 5
username: [your_username]
password: [your_password]
host: localhost
development:
<<: *default
database: [your_database_for_development]
test:
<<: *default
database: [your_database_for_test]
production:
<<: *default
database: [your_database_for_production]
Install this project with:
cd budgetly
bundle install
it will install the required gemfile for running the project
to use this project:
bin/rails server or
rails server
it will run the the server on localhost:3000
👤 Batool Fatima
- GitHub: @githubhandle
- Twitter: @twitterhandle
- LinkedIn: LinkedIn
- Change theme option
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
If you like this project kindly give stars
I would like to thank microverse for this project and regoire Vella for Original design idea Gregoire Vella on Behance.
This project is MIT licensed.