mirror of
https://github.com/SpudGunMan/meshing-around.git
synced 2026-03-28 17:32:36 +01:00
6 lines
179 B
Bash
6 lines
179 B
Bash
#!/bin/bash
|
|
|
|
# Substitute environment variables in the config file
|
|
envsubst < /app/config.ini > /app/config.tmp && mv /app/config.tmp /app/config.ini
|
|
|
|
exec python /app/mesh_bot.py |