fix typo in prompts/create-spring-boot-kotlin-project.prompt.md file (#73)

This commit is contained in:
Will 保哥 2025-07-11 07:18:27 +08:00 committed by GitHub
parent ceead13222
commit 79cabf68d4
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -132,9 +132,9 @@ spring.data.mongodb.database=test
- Run gradle clean test command to check if the project is working
```shell
./graldew clean test
./gradlew clean test
```
- (Optional) `docker-compose up -d` to start the services, `./graldew spring-boot:run` to run the Spring Boot project, `docker-compose rm -sf` to stop the services.
- (Optional) `docker-compose up -d` to start the services, `./gradlew spring-boot:run` to run the Spring Boot project, `docker-compose rm -sf` to stop the services.
Let's do this step by step.