You can run the application in two ways: using Docker or manually.
- From the root of the
Auctionproject, run:
docker-compose up --build -dThis will initialize the database and start the server
- Start the Client
From the root of the client folder, run:
./gradlew run- Initialize the Database
Make sure MySQL is installed and running locally, then execute:
mysql -u root -p < sql/init.sql- Start the Server
From the root of the server folder, run:
./gradlew bootRun- Start the Client
From the root of the client folder, run:
./gradlew run