This commit is contained in:
SpudGunMan
2025-01-12 12:43:44 -08:00
parent 7ae0d5e927
commit 902b4f22ee
2 changed files with 9 additions and 13 deletions
+1 -12
View File
@@ -78,18 +78,7 @@ The code is under active development, so make sure to pull the latest changes re
- **Launch Script**: `launch.sh` will activate and launch the app in the venv
#### Docker Installation
If you prefer to use Docker, follow these steps:
1. Ensure your serial port is properly shared.
2. Build the Docker image:
```sh
cd meshing-around
docker build -t meshing-around .
```
3. Run the Docker container:
```sh
docker run --rm -it --device=/dev/ttyUSB0 meshing-around
```
If you prefer to use [Docker](script/docker/README.md)
#### Custom Install
Install the required dependencies using pip:
+8 -1
View File
@@ -10,4 +10,11 @@ still a WIP
## Edit the config.ini in the docker
To edit the config.ini in the docker you can
`docker run -it --entrypoint /bin/bash meshing-around -c "nano /app/config.ini"`
`docker run -it --entrypoint /bin/bash meshing-around -c "nano /app/config.ini"`
## other info
1. Ensure your serial port is properly shared.
2. Run the Docker container:
```sh
docker run --rm -it --device=/dev/ttyUSB0 meshing-around
```