Development environment setup#36
Conversation
Co-authored-by: TraXXX86 <TraXXX86@users.noreply.github.com>
|
Cursor Agent can help with this pull request. Just |
There was a problem hiding this comment.
💡 Codex Review
Here are some automated review suggestions for this pull request.
Reviewed commit: 42d99dc58f
ℹ️ About Codex in GitHub
Your team has set up Codex to review pull requests in this repo. Reviews are triggered when you
- Open a pull request for review
- Mark a draft as ready
- Comment "@codex review".
If Codex has suggestions, it will comment; otherwise it will react with 👍.
Codex can also answer questions or update the PR. Try commenting "@codex address that feedback".
|
|
||
| ### Testing | ||
|
|
||
| - Backend tests: `NEO4J_AUTH=neo4j/expand123456 NEO4J_BOLT_URI=bolt://localhost:7687 mvn test -pl importdata -DfailIfNoTests=false` (requires running Neo4j). |
There was a problem hiding this comment.
Add
-am to backend test command
The documented test command uses mvn test -pl importdata -DfailIfNoTests=false without --also-make, which can fail from a clean checkout because importdata depends on sibling module fr.expand.project:commonspackage (importdata/pom.xml). Maven’s own help says -pl builds only the specified projects and -am is required to also build projects required by that list, so this command is not reliably runnable unless dependencies were installed beforehand.
Useful? React with 👍 / 👎.
Add
AGENTS.mdto document the development environment setup and application execution.