This is our Unified Banking Database created by Grant Allen and John Deluce.
To use the program:
First, clone the repository by typing:
`git clone https://github.com/PSU-CMPSC431W/cmpsc431w-fa25-project-grant-john.git`
To create the database, create a database called “banking_system” in the Postgres terminal by using:
`CREATE DATABASE banking_system;`
and use in Bash:
`pg_restore -U <Username> -h <host> -d banking_system -F c -c -v "banking_system.dump"`
Set up your environment variables in .env file by using the sample file in .env_sample.txt. PG_DBNAME should be “banking_system”.
Finally, run python main.py to start the program.