Skip to content

Commit 2c5c992

Browse files
committed
fix(Makefile): update help text
Signed-off-by: Edward Ly <[email protected]>
1 parent ec465ef commit 2c5c992

File tree

1 file changed

+8
-7
lines changed

1 file changed

+8
-7
lines changed

Makefile

Lines changed: 8 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,26 +1,27 @@
11
.DEFAULT_GOAL := help
22

33
APP_ID := talk_bot_ai
4+
APP_NAME := AssistantTalkBot
45
APP_VERSION := 3.0.0
56
JSON_INFO := "{\"id\":\"$(APP_ID)\",\"name\":\"Assistant Talk Bot\",\"daemon_config_name\":\"manual_install\",\"version\":\"$(APP_VERSION)\",\"secret\":\"12345\",\"port\":10034,\"scopes\":[\"TALK\", \"TALK_BOT\"],\"system\":0}"
67

78
.PHONY: help
89
help:
9-
@echo "Welcome to the Nextcloud Assistant talk bot. Please use \`make <target>\` where <target> is one of"
10+
@echo "Welcome to the Nextcloud Assistant talk bot. Please use \`make <target>\` where <target> is one of:"
1011
@echo " "
1112
@echo " Next commands are only for dev environment with nextcloud-docker-dev!"
12-
@echo " They should run from the host you are developing on(with activated venv) and not in the container with Nextcloud!"
13+
@echo " They should run from the host you are developing on (with activated venv) and not in the container with Nextcloud!"
1314
@echo " "
1415
@echo " build-push build image and upload to ghcr.io"
1516
@echo " "
16-
@echo " run install nextcloud_talk_bot for Nextcloud Latest"
17-
@echo " run30 install nextcloud_talk_bot for Nextcloud 30"
17+
@echo " run install $(APP_NAME) for Nextcloud Latest"
18+
@echo " run30 install $(APP_NAME) for Nextcloud 30"
1819
@echo " "
1920
@echo " For development of this app use PyCharm run configurations. Development is always set for last Nextcloud."
20-
@echo " First run 'nextcloud_talk_bot' and then 'make register', after that you can use/debug/develop it and easy test."
21+
@echo " First run '$(APP_NAME)' and then 'make register', after that you can use/debug/develop it and easy test."
2122
@echo " "
22-
@echo " register perform registration of running 'nextcloud_talk_bot' into the 'manual_install' deploy daemon."
23-
@echo " register30 perform registration of running 'nextcloud_talk_bot' into the 'manual_install' deploy daemon."
23+
@echo " register perform registration of running '$(APP_NAME)' into the 'manual_install' deploy daemon."
24+
@echo " register30 perform registration of running '$(APP_NAME)' into the 'manual_install' deploy daemon."
2425

2526
.PHONY: build-push
2627
build-push:

0 commit comments

Comments
 (0)