Budgeting App Setup Clone the front and back ends mkdir budgeting-app cd $_ git clone https://github.com/iris-beckham/express-server-starter git clone https://github.com/iris-beckham/budgeting-app-frontend.git Create an env file for the backend cd express-server-starter touch .env //.env PORT=3003 PG_HOST=localhost PG_PORT= #number of your postgres port PG_DATABASE=budget_dev PG_USER=postgres Make sure that postgres is running Locally deploy the backend npm i npm run dev Open a new window or tab in the terminal, and cd into the frontend. Create a .env file //.env VITE_BASE_API_URL = http://localhost:3003 Locally deploy the frontend npm i npm run dev Go to http://localhost:3000/ (or wherever you opened the port) Stretch Goals that were Implemented For the edit/create transaction form, all categories and accounts show up as options in the datalist format All dates have been converted in to a more easy to read format