missim-cli 3.3.0__tar.gz → 3.5.0__tar.gz
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- {missim_cli-3.3.0 → missim_cli-3.5.0}/PKG-INFO +1 -1
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.cache.yaml +7 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.dev.yaml +16 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.network-host.yaml +4 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.network-proxy.yaml +3 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.prod.yaml +3 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.yaml +14 -5
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/base.py +4 -3
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/PKG-INFO +1 -1
- {missim_cli-3.3.0 → missim_cli-3.5.0}/setup.cfg +1 -1
- {missim_cli-3.3.0 → missim_cli-3.5.0}/README.md +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/__init__.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/auth_helpers.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/banner.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/cli.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.gpu.yaml +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.ue_editor_nas_cache.yaml +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/__init__.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/docker.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/git.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/image.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/groups/setup.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/helpers.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/render_fbx.py +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/SOURCES.txt +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/dependency_links.txt +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/entry_points.txt +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/requires.txt +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/top_level.txt +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli.egg-info/zip-safe +0 -0
- {missim_cli-3.3.0 → missim_cli-3.5.0}/setup.py +0 -0
|
@@ -42,6 +42,22 @@ services:
|
|
|
42
42
|
secrets:
|
|
43
43
|
- API_TOKEN_GITHUB
|
|
44
44
|
|
|
45
|
+
missim_docs:
|
|
46
|
+
build:
|
|
47
|
+
context: ./
|
|
48
|
+
dockerfile: projects/missim_docs/Dockerfile
|
|
49
|
+
secrets:
|
|
50
|
+
- API_TOKEN_GITHUB
|
|
51
|
+
volumes:
|
|
52
|
+
- ./projects/missim_docs/package.json:/app/package.json
|
|
53
|
+
- ./projects/missim_docs/package-lock.json:/app/package-lock.json
|
|
54
|
+
- ./projects/missim_docs/sidebars.js:/app/sidebars.js
|
|
55
|
+
- ./projects/missim_docs/docusaurus.config.js:/app/docusaurus.config.js
|
|
56
|
+
- ./projects/missim_docs/tsconfig.json:/app/tsconfig.json
|
|
57
|
+
- ./projects/missim_docs/static/img:/app/static/img
|
|
58
|
+
- ./docs:/app/docs
|
|
59
|
+
command: npm run start
|
|
60
|
+
|
|
45
61
|
missim_ue:
|
|
46
62
|
build:
|
|
47
63
|
context: ./
|
|
@@ -28,9 +28,14 @@ services:
|
|
|
28
28
|
VITE_MISSIM_PROXY_ENABLED: ${MISSIM_PROXY_ENABLED:-false}
|
|
29
29
|
stop_signal: SIGINT
|
|
30
30
|
|
|
31
|
+
missim_docs:
|
|
32
|
+
container_name: missim_docs
|
|
33
|
+
image: ghcr.io/greenroom-robotics/missim_docs:${MISSIM_VERSION:-latest}
|
|
34
|
+
stop_signal: SIGINT
|
|
35
|
+
|
|
31
36
|
missim_chart_tiler:
|
|
32
37
|
container_name: missim_chart_tiler
|
|
33
|
-
image: ghcr.io/greenroom-robotics/chart_tiler:3.
|
|
38
|
+
image: ghcr.io/greenroom-robotics/chart_tiler:3.10.1
|
|
34
39
|
ports:
|
|
35
40
|
- 5003:8080
|
|
36
41
|
volumes:
|
|
@@ -41,7 +46,7 @@ services:
|
|
|
41
46
|
|
|
42
47
|
missim_chart_api:
|
|
43
48
|
container_name: missim_chart_api
|
|
44
|
-
image: ghcr.io/greenroom-robotics/chart_api:3.
|
|
49
|
+
image: ghcr.io/greenroom-robotics/chart_api:3.10.1
|
|
45
50
|
ports:
|
|
46
51
|
- "5006:8000"
|
|
47
52
|
volumes:
|
|
@@ -90,12 +95,16 @@ services:
|
|
|
90
95
|
- XDG_RUNTIME_DIR
|
|
91
96
|
- QT_X11_NO_MITSHM=1
|
|
92
97
|
- XAUTHORITY
|
|
93
|
-
- SIM_ARGS=-WINDOWED -AudioMixer -PixelStreamingIP=localhost
|
|
98
|
+
- SIM_ARGS=-WINDOWED -AudioMixer -PixelStreamingIP=localhost
|
|
99
|
+
-PixelStreamingPort=5004 -ResX=1920 -ResY=1080 -RenderOffscreen
|
|
100
|
+
-ForceRes -ExecCmds="DisableAllScreenMessages"
|
|
101
|
+
ABSLOG=/home/ue4/logs/unreal/unreal.log
|
|
94
102
|
- ROS_DOMAIN_ID
|
|
95
103
|
- ROS_AUTOMATIC_DISCOVERY_RANGE
|
|
96
104
|
- RMW_IMPLEMENTATION
|
|
97
105
|
- ZENOH_CONFIG_OVERRIDE
|
|
98
|
-
command: bash -c "mkdir -p /home/ue4/logs && ros2 launch
|
|
106
|
+
command: bash -c "mkdir -p /home/ue4/logs && ros2 launch
|
|
107
|
+
/home/ue4/mis_sim/sim.launch.py"
|
|
99
108
|
network_mode: host
|
|
100
109
|
|
|
101
110
|
missim_ue_pixel_streaming:
|
|
@@ -104,7 +113,7 @@ services:
|
|
|
104
113
|
profiles:
|
|
105
114
|
- ue-editor
|
|
106
115
|
- ue-standalone
|
|
107
|
-
command: ["--nosudo", "--", "--https_redirect", "false"]
|
|
116
|
+
command: [ "--nosudo", "--", "--https_redirect", "false" ]
|
|
108
117
|
network_mode: host
|
|
109
118
|
|
|
110
119
|
missim_proxy:
|
|
@@ -39,6 +39,7 @@ DOCKER_GPU = docker_compose_path("./docker-compose.gpu.yaml")
|
|
|
39
39
|
SERVICES = [
|
|
40
40
|
"missim_ui",
|
|
41
41
|
"missim_core",
|
|
42
|
+
"missim_docs",
|
|
42
43
|
"missim_ue",
|
|
43
44
|
"missim_ue_pixel_streaming",
|
|
44
45
|
"missim_ue_standalone",
|
|
@@ -232,9 +233,8 @@ def build(mode: Mode | None, clean: bool, cache: bool, services: List[str]):
|
|
|
232
233
|
):
|
|
233
234
|
click.echo("Building ue-standalone...")
|
|
234
235
|
|
|
235
|
-
|
|
236
|
-
|
|
237
|
-
docker_ue_editor.compose.run("missim_ue", ["bash", "-c", clean_command], remove=False)
|
|
236
|
+
clean_command = """cd "${PROJECTS_HOME}/MissimProject" && ue4 clean && rm -rf dist"""
|
|
237
|
+
docker_ue_editor.compose.run("missim_ue", ["bash", "-c", clean_command], remove=False)
|
|
238
238
|
|
|
239
239
|
# run compile command first to build the Plugins for the Editor target
|
|
240
240
|
compile.callback(clean=False) # type: ignore
|
|
@@ -715,6 +715,7 @@ def manifest(version: str): # type: ignore
|
|
|
715
715
|
images = [
|
|
716
716
|
"missim_ui",
|
|
717
717
|
"missim_core",
|
|
718
|
+
"missim_docs",
|
|
718
719
|
"missim_proxy",
|
|
719
720
|
]
|
|
720
721
|
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
{missim_cli-3.3.0 → missim_cli-3.5.0}/missim_cli/docker/docker-compose.ue_editor_nas_cache.yaml
RENAMED
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|
|
File without changes
|