a paycheck-to-paycheck breakdown of income and expenses
- React / Redux
- Node / Express
- MongoDB / Mongoose
- PM2
- Material UI
Project Paycheck is a tool for people to plan and have a better understanding of their finances. It'll have a breakdown of incomes and expenses for the next few paychecks, this'll allow users to see where their money is being spent for the next paycheck, Enabling the user to make informed spending decisions.
Will have two main views:
- Breakdown of total income, expenses, and savings for a given range (weekly, monthly, etc)
- Breakdown of single paychecks with information regarding which expenses will be taken from it.This will help people to determine if they can afford extra spending for that week or not.
- I can input all my monthly expenses
- I can see my expenses separated from income and paycheck breakdown
- I can input my income
- I can input multiple incomes
- I can see my incomes separated from expenses and paycheck breakdown
- I can see a breakdown of all income and expenses with a balance at the end
- I can change the breakdown from daily, weekly, bi-weekly, monthly and yearly
- I can see the percentage and amount I am saving
- I can make an account to remember all my information
- I can log into my account with my email
- I can see a breakdown of my next paycheck that will show my income for that check and all the expenses that will be paid by that check
- I can easily edit both income and expenses
Set upstream for your fork to point to the original repository. Directions
Install dependencies in both client
and server
folders with the npm install
command
Make sure to have MongoDB installed locally or connect to your own cloud hosted database
- Local:
- Cloud:
- MongoDB Atlas
- The project is using .env file to store configuration variables. You need to rename .env-example to .env to get started.
- Replace the values in .env with your actual values to connect to the database:
DB_USER=user
DB_HOST=localhost:27017
DB_PASSWORD=password
- If you are using the local database, you need to create a user in mongoDB database in order to create a connection with authentication, for example:
mongo
use projectpaycheck
db.createUser(
{
user: "accountUser",
pwd: "password",
roles: [ "readWrite", "dbAdmin" ]
}
)
- Fork the repo
- Set upstream to point to the original repo, read this
- Add yourself to the
contributors.json
file - Pick a ticket from the backlog column on Notion and assign yourself to it
- You can also make a ticket on Notion and work on that, just make sure to label it with the "non-outlined work" label
- Make sure no one else is working on the same task
- Make changes to your repo
- When done, submit a PR to the original repository
- If your task involved the UI, include a screenshot with your PR
- Move your ticket to "ready-to-merge" column
- Make sure to have the Prettier extension installed so that your code will autoformat according to the config file
- Please keep PRs small so that code reviews will be managable