Compare commits
2 commits
5d75d80a87
...
b8b21bad6b
| Author | SHA1 | Date | |
|---|---|---|---|
|
|
b8b21bad6b | ||
|
|
70c65fa178 |
4 changed files with 7 additions and 5 deletions
|
|
@ -4,10 +4,11 @@ services:
|
||||||
web:
|
web:
|
||||||
build: .
|
build: .
|
||||||
ports:
|
ports:
|
||||||
- "5000:5000"
|
- "5555:5000"
|
||||||
environment:
|
environment:
|
||||||
- FLASK_ENV=development
|
- FLASK_ENV=development
|
||||||
- FLASK_DEBUG=1
|
- FLASK_DEBUG=1
|
||||||
volumes:
|
volumes:
|
||||||
- .:/app
|
- .:/app
|
||||||
command: uv run python web_solve.py
|
command: uv run python web_solve.py
|
||||||
|
restart: unless-stopped
|
||||||
|
|
|
||||||
6
solve.py
6
solve.py
|
|
@ -130,10 +130,10 @@ AGENT_AVAILABILITY = {
|
||||||
"baron": [],
|
"baron": [],
|
||||||
"prodigy": [],
|
"prodigy": [],
|
||||||
"provisioner": [],
|
"provisioner": [],
|
||||||
"metallurgist": [2, 3, 4, 5],
|
"metallurgist": [],
|
||||||
"builder": [2, 3, 4],
|
"builder": [],
|
||||||
"courier": [],
|
"courier": [],
|
||||||
"planner": [1, 2, 3, 4, 5],
|
"planner": [],
|
||||||
"fence": [],
|
"fence": [],
|
||||||
"foreman": [],
|
"foreman": [],
|
||||||
"industrialist": [],
|
"industrialist": [],
|
||||||
|
|
|
||||||
|
|
@ -193,7 +193,6 @@
|
||||||
}
|
}
|
||||||
|
|
||||||
.output-section {
|
.output-section {
|
||||||
display: none;
|
|
||||||
margin-top: 30px;
|
margin-top: 30px;
|
||||||
padding: 20px;
|
padding: 20px;
|
||||||
background: #f5f5f5;
|
background: #f5f5f5;
|
||||||
|
|
|
||||||
|
|
@ -109,6 +109,8 @@ def solve_handler():
|
||||||
else:
|
else:
|
||||||
agent_availability[agent_name] = []
|
agent_availability[agent_name] = []
|
||||||
|
|
||||||
|
solve.AGENT_AVAILABILITY = agent_availability
|
||||||
|
|
||||||
# Parse time limit
|
# Parse time limit
|
||||||
time_limit = float(data.get("time_limit", 60.0))
|
time_limit = float(data.get("time_limit", 60.0))
|
||||||
|
|
||||||
|
|
|
||||||
Loading…
Reference in a new issue