diff --git a/README.md b/README.md
index ff1e8c90413f25e306151fb8249cc53e5184d357..1e33d205d67bdd1f7de98c3e6426ff51afa8f261 100644
--- a/README.md
+++ b/README.md
@@ -29,7 +29,7 @@ the "root" user under `/opt/metobs/aoss_tower`.
```bash
sudo /opt/metobs/aoss_tower/bin/pip install -e repos/git/MetObsCommon/
- sudo /opt/metobs/aoss_tower/bin/pip install -e repos/git/MetObsAPI/
+ sudo /opt/metobs/aoss_tower/bin/pip install -e repos/git/AossTower/
```
4. Copy `etc` files from MetObsCommon if necessary:
diff --git a/scripts/start_tower_influxdb_ingest.sh b/scripts/start_tower_influxdb_ingest.sh
index 07d39eded42397fc8f39930892ba8c4dc65812f6..456d3d6ae5bb125eecd484b9715b523992170e32 100755
--- a/scripts/start_tower_influxdb_ingest.sh
+++ b/scripts/start_tower_influxdb_ingest.sh
@@ -15,6 +15,6 @@ SCRN=$(screen -list | grep $NAME | awk '{print $1}')
if [ -n "$SCRN" ]; then
echo Screen already running: $SCRN
else
- screen -S $NAME -d -m $PYENV/bin/python -m aosstower.level_00.influxdb -vvv --weather-underground --ldmp RIGTower
+ screen -S $NAME -d -m $PYENV/bin/python -m aosstower.level_00.influxdb -vvv --influxdb-token $(</home/metobs/influxdbv2_metobs_rw.txt) --weather-underground --ldmp RIGTower
echo Started in screen $(screen -list | grep $NAME | awk '{print $1}')
fi