Skip to content

Commit 8867b7f

Browse files
committed
cleanup and prepare for deployment
Signed-off-by: Elazar Gershuni <elazarg@gmail.com>
1 parent 586a2f8 commit 8867b7f

113 files changed

Lines changed: 16181 additions & 15906 deletions

File tree

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

.dockerignore

Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,36 +1,36 @@
1-
# Python
2-
__pycache__/
3-
*.pyc
4-
*.pyo
5-
*.pyd
6-
.venv/
7-
plugins/*/.venv/
8-
*.egg-info/
9-
.pytest_cache/
10-
.coverage
11-
htmlcov/
12-
dist/
13-
build/
14-
15-
# Node
16-
frontend/node_modules/
17-
frontend/dist/
18-
frontend/.parcel-cache/
19-
20-
# IDE
21-
.idea/
22-
.vscode/
23-
*.swp
24-
*.swo
25-
26-
# Git
27-
.git/
28-
.gitignore
29-
30-
# Docs (tests included for container testing)
31-
*.md
32-
!README.md
33-
34-
# Logs and temp files
35-
*.log
36-
*.tmp
1+
# Python
2+
__pycache__/
3+
*.pyc
4+
*.pyo
5+
*.pyd
6+
.venv/
7+
plugins/*/.venv/
8+
*.egg-info/
9+
.pytest_cache/
10+
.coverage
11+
htmlcov/
12+
dist/
13+
build/
14+
15+
# Node
16+
frontend/node_modules/
17+
frontend/dist/
18+
frontend/.parcel-cache/
19+
20+
# IDE
21+
.idea/
22+
.vscode/
23+
*.swp
24+
*.swo
25+
26+
# Git
27+
.git/
28+
.gitignore
29+
30+
# Docs (tests included for container testing)
31+
*.md
32+
!README.md
33+
34+
# Logs and temp files
35+
*.log
36+
*.tmp

.env.example

Lines changed: 11 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -29,18 +29,17 @@ MAX_UPLOAD_SIZE_BYTES=5242880
2929
# =============================================================================
3030
# Plugin Service URLs
3131
# =============================================================================
32-
# URLs for plugin services (used when running outside Docker Compose)
33-
# When using Docker Compose, these are set automatically via service names
34-
GAMBIT_URL=http://gambit:5001
35-
PYCID_URL=http://pycid:5002
36-
EGTTOOLS_URL=http://egttools:5003
37-
VEGAS_URL=http://vegas:5004
38-
OPENSPIEL_URL=http://openspiel:5005
39-
40-
# =============================================================================
41-
# Local Development (without Docker)
42-
# =============================================================================
43-
# If running plugins locally without Docker, use localhost URLs:
32+
# Inside Docker Compose, the app resolves plugins by service name (the defaults).
33+
# You only need to set these when running the app outside Docker.
34+
#
35+
# Docker (default): Outside Docker:
36+
# http://gambit:5001 http://localhost:5001
37+
# http://pycid:5002 http://localhost:5002
38+
# http://egttools:5003 http://localhost:5003
39+
# http://vegas:5004 http://localhost:5004
40+
# http://openspiel:5005 http://localhost:5005
41+
#
42+
# Uncomment to override:
4443
# GAMBIT_URL=http://localhost:5001
4544
# PYCID_URL=http://localhost:5002
4645
# EGTTOOLS_URL=http://localhost:5003

0 commit comments

Comments
 (0)