-
-
Notifications
You must be signed in to change notification settings - Fork 9
docs: add comments to config.py for better readability #6
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Changes from all commits
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
| Original file line number | Diff line number | Diff line change |
|---|---|---|
|
|
@@ -37,8 +37,8 @@ The system is split into two autonomous components that communicate via shared f | |
| ### Quick Start | ||
| 1. **Clone the repository**: | ||
| ```bash | ||
| git clone https://github.com/imxade/dont-compete.git | ||
| cd dont-compete | ||
| git clone https://github.com/AOSSIE-Org/LibrEd.git | ||
| cd LibrEd | ||
| ``` | ||
|
|
||
| 2. **Launch the System**: | ||
|
|
@@ -51,7 +51,7 @@ The system is split into two autonomous components that communicate via shared f | |
|
|
||
| 3. **Monitor Pipeline**: | ||
| ```bash | ||
| docker compose logs -f generator | ||
| asset-generator | ||
| ``` | ||
|
|
||
| ### Configuration | ||
|
|
@@ -91,6 +91,16 @@ docker run --rm --network gatebuster_app_network \ | |
| mcr.microsoft.com/playwright:v1.58.0-jammy \ | ||
| /bin/sh -c "npm install && npx playwright test" | ||
| ``` | ||
| On Windows PowerShell, use: | ||
|
|
||
| ```powershell | ||
| docker run --rm --network gatebuster_app_network ` | ||
| -e BASE_URL=http://frontend:3000 ` | ||
| -v ${PWD}/frontend:/app ` | ||
| -w /app ` | ||
| mcr.microsoft.com/playwright:v1.58.0-jammy ` | ||
| sh -c "npm install && npx playwright test" | ||
| ``` | ||
|
Comment on lines
+94
to
+103
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Add blank line after code fence for proper Markdown formatting. The Windows PowerShell instructions are functionally correct and provide valuable cross-platform support. However, there's a minor Markdown formatting issue flagged by the linter. 📐 Proposed fix to add blank line sh -c "npm install && npx playwright test"Note: Ensure the frontend service is running ( 🧰 Tools🪛 markdownlint-cli2 (0.21.0)[warning] 103-103: Fenced code blocks should be surrounded by blank lines (MD031, blanks-around-fences) 🤖 Prompt for AI Agents |
||
| *Note: Ensure the frontend service is running (`docker compose up`) before starting Playwright tests.* | ||
|
|
||
| ## License | ||
|
|
||
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Fix incomplete shell command.
The monitor pipeline command is incomplete and will result in a "command not found" error. Based on the docker-compose.yml configuration, this should be a
docker compose logscommand targeting theasset-generatorservice.📝 Proposed fix for the complete command
📝 Committable suggestion
🤖 Prompt for AI Agents