-
Notifications
You must be signed in to change notification settings - Fork 15
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Loading configurations from config.env is now moved to .env. The sample file is now .env.sample . This is beacause the latter is the conventional style which I was unaware of at the time I first implemented it. There is still full backwards compatibility with config.env file.
- Loading branch information
Showing
4 changed files
with
7 additions
and
5 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,5 @@ | ||
BOT_TOKEN = 123456789:AATiuhBBy6oIL9r54yYLs7CSn | ||
FSUB = -1002235842999 -1001898719761 | ||
PROTECT_CONTENT = true | ||
PROTECT_CONTENT = true | ||
AUTO_DELETE = 10 | ||
ADMINS = 123456789 1093541873 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -22,7 +22,7 @@ go.work.sum | |
/.vscode | ||
|
||
# Local environment configs | ||
config.env | ||
.env | ||
|
||
# Cache file from autodelete | ||
cache.sqlite |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters