Intro to Software Engineering Project
Jeffery Eisenhardt - eisenhardtj
Christine Colvin - christinecolvin
Cole Aydelotte - coleaydelotte
Jalil Rodriguez - JalilR08
Download and install MySQL for your MacOS by following the instructions: https://dev.mysql.com/doc/refman/8.3/en/macos-installation-pkg.html
If you have HomeBrew installed you can paste the following command into your terminal:
brew install mysql
Open the terminal and enter the following command once MySQL is downloaded:
mysql -u root -p
You will be prompted for a password but, since this is the first time you have logged in their is not one set so you can just press the return key to bypass.
If you have had MySQL downloaded before then you might have set a root password, please enter this password when prompted.
Once logged in you can now paste the following command in the terminal:
CREATE USER 'project'@'localhost' IDENTIFIED BY 'project';
Then enter the following command:
GRANT ALL PRIVILEGES ON *.* TO 'project'@'localhost' WITH GRANT OPTION;
After you can enter quit into the terminal.
quit
Clone the repository into a preferred location using the command:
git clone https://github.com/eisenhardtj/cs234-group-7.git
Open your terminal, navigate to the path where you cloned the repository, then run the command:
mysql -u project -p < dumpfiles/dump.sql
You will be prompted to enter a password--enter 'project' case sensitive.
After opening the repository, Run the BasketballTeamRosterGUI.java file to run the program.
Find the BasketballRoster.jar file in the project root, and double-click the file to run the program.
If this doesn't work and you get an error--this is most likely due to a Java mismatch. The project jar was built using JDK 21.0.1.
You can run the following command:
java -jar BasketballRoster.jar