gradle path to /app

This commit is contained in:
Anthony Stirling
2025-07-15 15:40:56 +01:00
parent 3d1b5890c7
commit 57cf5d4812
30 changed files with 266 additions and 71 deletions

View File

@@ -4,11 +4,11 @@ This file provides high-level instructions for Codex when modifying any files wi
## 1. Code Style and Formatting
- Respect the `.editorconfig` settings located in the repository root. Java files use 4 spaces; HTML, JS, and Python generally use 2 spaces. Lines should end with `LF`.
- Format Java code with `./gradlew spotlessApply` before committing.
- Format Java code with `cd app && ./gradlew spotlessApply` before committing.
- Review `DeveloperGuide.md` for project structure and design details before making significant changes.
## 2. Testing
- Run `./gradlew build` before committing changes to ensure the project compiles.
- Run `cd app && ./gradlew build` before committing changes to ensure the project compiles.
- If the build cannot complete due to environment restrictions, DO NOT COMMIT THE CHANGE
## 3. Commits
@@ -16,7 +16,7 @@ This file provides high-level instructions for Codex when modifying any files wi
- Ensure the working tree is clean (`git status`) before concluding your work.
## 4. Pull Requests
- Summarize what was changed and why. Include build results from `./gradlew build` in the PR description.
- Summarize what was changed and why. Include build results from `cd app && ./gradlew build` in the PR description.
- Note that the code was generated with the assistance of AI.
## 5. Translations

View File

@@ -176,7 +176,7 @@ Stirling-PDF uses different Docker images for various configurations. The build
2. Build the project with Gradle:
```bash
./gradlew clean build
cd app && ./gradlew clean build
```
3. Build the Docker images:
@@ -243,7 +243,7 @@ To run Stirling-PDF locally:
1. Compile and run the project using built-in IDE methods or by running:
```bash
./gradlew bootRun
cd app && ./gradlew bootRun
```
2. Access the application at `http://localhost:8080` in your web browser.