Skip to content

Testing settings update #6

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Open
wants to merge 2 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
12 changes: 12 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
BOT_TOKEN=7670858344:AAEh4Oq0GDs66E5u1wEg5AGDfk1Gs4P6940
RESET_DB=(boolean: wipes data regarding the queue bot if needed - 'true' during testing to clear junk data, 'false' otherwise.)
BASE_ADMIN_ACCOUNT=(place the person that is to be the first admin of the bot. If your handle is @abc, type abc without the @.)

# Postgres access details
## named to allow remote deployment override
# see https://github.com/docker-library/docs/blob/master/postgres/README.md#environment-variables
POSTGRES_USER=postgres
POSTGRES_DB=postgres
POSTGRES_PASSWORD=postgres
PGHOST=localhost
PGPORT=5432
2 changes: 1 addition & 1 deletion internal/botaccess/settings.go
Original file line number Diff line number Diff line change
Expand Up @@ -54,7 +54,7 @@ const (

nonCommandFeedback string = "Please input a command which starts with '/', like /start"

invalidCommandFeedback string = "Sorry, I don't recognize your command :("
invalidCommandFeedback string = "Sorry, I don't recognize your command :( Would you like to send another command?"

joinQueueAlreadyJoined string = "You have already joined this queue!"
joinQueueSuccess string = "Joined the queue. (Check the queue with /howlong.)"
Expand Down