### Install and Start Frontend Service Source: https://java.cool-admin.com/src/guide/quick.html These shell commands are used to install frontend dependencies and start the development server. Run these in the project root directory. ```shell # 安装依赖 npm install # 启动 npm run dev ``` -------------------------------- ### Backend Service Startup Log Source: https://java.cool-admin.com/src/guide/quick.html This log output indicates that the backend service has started successfully. Look for messages confirming plugin initialization and EPS completion. ```log 2024-07-15T14:38:45.382+08:00 INFO 31908 --- [cool-admin-java] [ main] c.c.c.plugin.service.CoolPluginService : 没有可初始化的插件 2024-07-15T14:38:45.383+08:00 INFO 31908 --- [cool-admin-java] [ main] com.cool.core.eps.EpsEvent : 构建eps信息 2024-07-15T14:38:45.941+08:00 INFO 31908 --- [cool-admin-java] [ task-1] o.springdoc.api.AbstractOpenApiResource : Init duration for springdoc-openapi is: 556 ms 2024-07-15T14:38:46.101+08:00 INFO 31908 --- [cool-admin-java] [pool-3-thread-1] com.cool.core.eps.CoolEps : 初始化eps完成,服务启动成功,端口:8001 ``` -------------------------------- ### Configure MySQL Database Source: https://java.cool-admin.com/src/guide/quick.html This YAML snippet shows the database configuration for MySQL. Ensure your database URL, username, and password are correctly set. The driver is built-in. ```yaml # mysql,驱动已经内置,无需安装 spring: datasource: url: jdbc:mysql://127.0.0.1:3306/cool?useUnicode=true&characterEncoding=UTF-8&serverTimezone=GMT%2b8 username: root password: 123456 driver-class-name: com.mysql.cj.jdbc.Driver ``` === COMPLETE CONTENT === This response contains all available snippets from this library. No additional content exists. Do not make further requests.