To ensure the application works, we need to load data into the RDS instance.
We will use the SQL script in aws-fcaj-container-app/database to insert the data. To do this, first navigate to the aws-fcaj-container-app/database directory to get the script path:
cd aws-fcaj-container-app/database
echo $PWD/init.sql

Copy the path as we will use it later.

mysql -h "rds-endpoint" -u admin -p

source /project/aws-fcaj-container-app/database/init.sql command to run the SQL script.
SHOW DATABASES;
USE fcajresbar then SELECT * FROM Categories;