Change description of src/ in appimage boilerplate readme to include bit about everything in there being a placeholder; also take Viam out of log prefix in runsh

This commit is contained in:
hexbabe
2023-12-01 10:13:47 -05:00
parent e47e8b5311
commit 120a61e7e8
2 changed files with 2 additions and 2 deletions

View File

@@ -9,7 +9,7 @@ Use this repository's build process as boilerplate to deploy your own Python Via
## Quick tour of this repo
- `packaging/`: the directory containing the Dockerfile that configures the Docker image to run the builder in, the AppImageBuilder.yml config file, and the icon. You must have Docker installed before running the build.
- `src/`: Python module code for the Viam module
- `src/`: Python module code for the Viam module. Replaceable boilerplate for whatever robot resource your module implements.
- `Makefile`: `make` commands to build the module in different ways
- `meta.json`: the metadata config file used when uploading/updating module info on the registry
- `requirements.txt`: list of Python packages the module depends on

2
run.sh
View File

@@ -1,6 +1,6 @@
#!/bin/sh
cd "$(dirname "$0")"
LOG_PREFIX="[Viam REPLACE_WITH_MODULE_NAME module setup]"
LOG_PREFIX="[REPLACE_WITH_MODULE_NAME setup]"
echo "$LOG_PREFIX Starting the module."