diff --git a/.gitignore b/.gitignore index 549e00a..e9f52f6 100644 --- a/.gitignore +++ b/.gitignore @@ -31,3 +31,4 @@ build/ ### VS Code ### .vscode/ +src/main/resources/application.properties.example \ No newline at end of file diff --git a/src/main/resources/application.properties.example b/src/main/resources/application.properties.example new file mode 100644 index 0000000..ae15036 --- /dev/null +++ b/src/main/resources/application.properties.example @@ -0,0 +1,6 @@ +spring.application.name=webapi +spring.datasource.driver-class-name=com.mysql.cj.jdbc.Driver +spring.datasource.url=jdbc:mysql://localhost:3306/web_api?useUnicode=true&characterEncoding=utf8 +spring.datasource.username=root +spring.datasource.password=123456 +server.port = 8888 \ No newline at end of file