-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
* Update issue templates (#42) * chore(dev): release 1.0.0 * style(read-me): latest tag * chore(master): release 1.0.0 (#41) * chore(master): release 1.0.0 * style: rm changelog dupes * Update issue templates * Mongodb (#45) * chore: mongoose, nestjs/mongoose * feat: mongoose config and schemas * fix: schema types and validators * cd: mongo compose and init config * cd: coimpose columes * refactor(gitignore): env etc. * refactor: issue templates * feat: mongo and phrases * feat: wip - new interactive command * feat: new commands
- Loading branch information
Showing
28 changed files
with
745 additions
and
12 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
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 |
---|---|---|
@@ -0,0 +1,18 @@ | ||
--- | ||
name: Question | ||
about: I have a question about the bots functionality. | ||
title: '' | ||
labels: discussion, question | ||
assignees: '' | ||
--- | ||
|
||
\*_My Question is:_ | ||
Your Question about BingusBoingus. | ||
|
||
**What I've tried so far** | ||
|
||
**Screenshots** | ||
If applicable, add screenshots to help explain your problem. | ||
|
||
**Additional context** | ||
Add any other context about the problem here. |
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
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
MONGO_INITDB_ROOT_USERNAME= | ||
MONGO_INITDB_ROOT_PASSWORD= | ||
MONGO_USER= | ||
MONGO_PASSWORD= | ||
MONGO_INITDB_DATABASE= |
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 |
---|---|---|
@@ -0,0 +1,5 @@ | ||
db.createUser({ | ||
user: _getEnv('MONGO_USER'), | ||
pwd: _getEnv('MONGO_PASSWORD'), | ||
roles: ['readWrite', 'dbAdmin'], | ||
}); |
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 |
---|---|---|
@@ -0,0 +1,42 @@ | ||
# mongod.conf | ||
|
||
# for documentation of all options, see: | ||
# http://docs.mongodb.org/manual/reference/configuration-options/ | ||
|
||
# Where and how to store data. | ||
# storage: | ||
# dbPath: /var/lib/mongodb | ||
# journal: | ||
# enabled: true | ||
# engine: | ||
# wiredTiger: | ||
|
||
# where to write logging data. | ||
systemLog: | ||
destination: file | ||
logAppend: true | ||
path: /var/log/mongodb/mongod.log | ||
|
||
# network interfaces | ||
net: | ||
port: 27017 | ||
bindIp: 0.0.0.0 | ||
|
||
|
||
# how the process runs | ||
processManagement: | ||
timeZoneInfo: /usr/share/zoneinfo | ||
|
||
#security: | ||
|
||
#operationProfiling: | ||
|
||
#replication: | ||
|
||
#sharding: | ||
|
||
## Enterprise-Only Options: | ||
|
||
#auditLog: | ||
|
||
#snmp: |
Oops, something went wrong.