This is a banking application built using Java with Swing and JDBC. The backend is connected to a PostgreSQL database.
To run the application, you need to have Java and PostgreSQL installed on your machine. Follow these steps:
- Download the JAR and database dump from the releases page.
- Import the database dump into your PostgreSQL server.
psql -U USERNAME -d DATABASE -f dump.sql
- Run the JAR file using the command:
java "-Ddb.password=PASSWORD" "-Ddb.url=jdbc:postgresql://HOSTNAME:PORT/DATABASE" -jar banking-app.jar
Where:
PASSWORDis the password for the PostgreSQL user.HOSTNAMEis the hostname of your PostgreSQL server (default islocalhost).PORTis the port number of your PostgreSQL server (default is5432).DATABASEis the name of your PostgreSQL database (default ispostgres).