Gather data
This commit is contained in:
11
README.md
11
README.md
@@ -25,7 +25,7 @@ A high-performance Java-based puzzle generator with theme-based word filtering a
|
||||
- Edit distance similarity matching
|
||||
- Automatic theme detection
|
||||
|
||||
3. **DailyGenerator.java** - Daily puzzle automation
|
||||
3. **Main.java** - Core generator and daily automation
|
||||
- Generates themed puzzles
|
||||
- JSON output with metadata
|
||||
- Index file generation
|
||||
@@ -47,7 +47,6 @@ A high-performance Java-based puzzle generator with theme-based word filtering a
|
||||
java -cp ~/dev/.target puzzle.Main --seed 42 --pop 18 --gens 100
|
||||
|
||||
# Generate daily puzzles
|
||||
java -cp ~/dev/.target puzzle.DailyGenerator
|
||||
```
|
||||
|
||||
### Docker Deployment
|
||||
@@ -153,13 +152,13 @@ Puzzles are generated daily at **3:15 AM** (configurable in `crontab`).
|
||||
Edit `crontab` to change schedule:
|
||||
```cron
|
||||
# Daily at 3:15 AM
|
||||
15 3 * * * java -cp /app/target puzzle.DailyGenerator
|
||||
15 3 * * * java -cp /app/target puzzle.Main
|
||||
|
||||
# Every 6 hours
|
||||
0 */6 * * * java -cp /app/target puzzle.DailyGenerator
|
||||
0 */6 * * * java -cp /app/target puzzle.Main
|
||||
|
||||
# Weekly on Monday at 1 AM
|
||||
0 1 * * 1 java -cp /app/target puzzle.DailyGenerator
|
||||
0 1 * * 1 java -cp /app/target puzzle.Main
|
||||
```
|
||||
|
||||
## Word List Format
|
||||
@@ -208,7 +207,7 @@ The Java version maintains module-wise compatibility with the Node.js generator:
|
||||
|------------------------|-------------------------------------|
|
||||
| `swedish_generator.js` | `SwedishGenerator.java` |
|
||||
| `export_format.js` | `ExportFormat.java` |
|
||||
| `main.js` | `Main.java` + `DailyGenerator.java` |
|
||||
| `main.js` | `Main.java` |
|
||||
| N/A | `ThemeGraph.java` (new) |
|
||||
|
||||
## Volume Management
|
||||
|
||||
Reference in New Issue
Block a user