Budget Rails is a mobile web application where user can manage their budget with transactions. You can check how much your are spending monthly.
BackEnd
Test
Database
- [Register and Login] - Register and Login so the data is private to them.
- [Transaction ] - Check your transactions.
If you dont have Ruby installed on your computer, you can download it from here.
If you dont have Rails installed on your computer, you can download it from here.
If you dont have PostgreSQL installed on your computer, you can download it from here.
If you have installed git you can clone the code to your machine, or download a ZIP of all the files directly.
NOTE:
You may need to run the following commands in the project directory to install the required gems and run the application:
- Install gem packages with:
bundle install
- Open the config/database.yml file in the project directory and change the username and password to your PostgreSQL username and password. Edit the default section of the file to look like this:
default: &default
adapter: postgresql
encoding: unicode
# For details on connection pooling, see Rails configuration guide
# http://guides.rubyonrails.org/configuring.html#database-pooling
pool: <%= ENV.fetch("RAILS_MAX_THREADS") { 5 } %>
username: <your PostgreSQL role username>
password: <your PostgreSQL role password>
- Create the database with:
rails db:create
- Start the development server
rails server
- Open the app in your browser at http://localhost:3000
To run tests, run the following command: rspec
π€ Edi Sipka
- GitHub: @Edi-Sipka
- Twitter: @sipka_edii
- LinkedIn: Edi Sipka
- [Edit and Delete Transactions] [Delete or edit all transactions]
Contributions, issues, and feature requests are welcome!
Feel free to check the issues page.
If you like this project give as a star! βοΈ
- Original design idea by Gregoire Vella on Behance.
- Hat tip to anyone whose code was used
- Microverse Document
-
[How I can run this project?]
- [After cloning repository, run rails server.]
-
[Can I edit my transactions?]
- [Currently you can only add transactions]
This project is MIT licensed.