Skip to content

Commit 67e9296

Browse files
committed
Remove old ENV template, improve config example
1 parent 3c5e0f6 commit 67e9296

File tree

3 files changed

+21
-18
lines changed

3 files changed

+21
-18
lines changed

config-example.yml

+20-2
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,27 @@
1-
# Rodhaj's config file
1+
# --------------------------------- #
2+
# Rodhaj's Configuration file #
3+
# --------------------------------- #
4+
# This holds the configuration for Rodhaj. This file is not settable during runtime.
5+
# If you wish to change the values, change and save, and restart your bot
26

37
# Entries pertaining to Rodhaj are located here
48
rodhaj:
9+
10+
# The token that Rodhaj will use.
11+
# Ensure that this is kept secret, as these are just like the password to your bot.
512
token: ""
13+
14+
# The Guild ID that is associated with Rodhaj. This will be the guild that Rodhaj
15+
# will operate in, and will be the guild that Rodhaj will use to associate tickets and co.
616
guild_id: 12345
717

8-
# The URI to connect to the PostgreSQL database
18+
# The dev mode for Rodhaj. This will enable certain features
19+
# such as an extension and library hot reloader in order to
20+
# make development easier
21+
# Note: Set this to false or remove this entry when running Rodhaj in production
22+
dev_mode: False
23+
24+
# The PostgreSQL connection URI that is used to connect to the database
25+
# The URI must be valid, and components will need to be quoted.
26+
# See https://www.postgresql.org/docs/current/libpq-connect.html#LIBPQ-CONNSTRING
927
postgres_uri: "postgresql://user:password@localhost:5432/user"

envs/docker.env docker-compose-example.env

+1
Original file line numberDiff line numberDiff line change
@@ -3,6 +3,7 @@
33
# found within the docker compose file
44

55
# Docker PostgreSQL root credientials
6+
# This account has root access, so please ensure that this is a secure password
67
POSTGRES_USER=postgres
78
POSTGRES_PASSWORD=password
89

envs/dev.env

-16
This file was deleted.

0 commit comments

Comments
 (0)