Right now for local development, one has to install MySQL server locally, configure it with a username and database, update properties file then run it locally. A lot of things can go wrong while configuring the database locally so we need to add a dockerfile to ease the developers of this kind of repetitive tasks.
[x] Create a dockerfile containing MySQL server (version 8).
[x] Configure the MySQL docker database configured user and database. (Ideally with user : cd_user_local, password : {use_secure} and database code_drills).
[x] Update the application-dev.properties with the necessary user, password and database for local development.
Right now for local development, one has to install MySQL server locally, configure it with a username and database, update
properties
file then run it locally. A lot of things can go wrong while configuring the database locally so we need to add adockerfile
to ease the developers of this kind of repetitive tasks.user
:cd_user_local
,password
:{use_secure}
and databasecode_drills
).application-dev.properties
with the necessary user, password and database for local development.