Skip to content

Commit

Permalink
WIP
Browse files Browse the repository at this point in the history
  • Loading branch information
byte-sized-emi committed Feb 18, 2024
1 parent 8af26a8 commit a9ca592
Show file tree
Hide file tree
Showing 8 changed files with 288 additions and 70 deletions.
11 changes: 11 additions & 0 deletions .env
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
MAIN_GUILD_ID=793280245359837214
MYSQL_DATABASE=USER_DB_NAME
MYSQL_USER=MYSQL_USER
MYSQL_PASSWORD=DATABASE_PASSWORD
MYSQL_HOST=10.253.2.1
MYSQL_PORT=3307
PUID=1000
PGID=1000
REDIS_PORT=6379
REDIS_HOST=localhost
BOT_TOKEN=MTIwNjIxNTIyMjQ1MzQ3NzM4Ng.GvgtF_.saLP_FOYCZKvdDXlSQYKT7ibDirWdir7KFrw5E
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -2,3 +2,4 @@
.idea/
appdata/
.editorconfig
.env.development
145 changes: 142 additions & 3 deletions Cargo.lock

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

6 changes: 4 additions & 2 deletions Cargo.toml
Original file line number Diff line number Diff line change
Expand Up @@ -11,14 +11,15 @@ futures = "0.3"
itertools = "0.12"
poise = "0.5.7" # https://github.com/serenity-rs/poise
tracing = "0.1.40" # https://github.com/tokio-rs/tracing
tracing-subscriber = "0.3.18"
tracing-subscriber = { version = "0.3.18", features = ["env-filter"]}
tracing-appender = "0.2.3"
rolling-file = "0.2.0"
sqlx = { version = "0.7.3", features = [
"runtime-tokio",
"mysql",
"migrate",
"time"
"time",
"tls-native-tls"
] } # https://github.com/launchbadge/sqlx
redis = { version = "0.24.0", features = [
"tokio-comp",
Expand All @@ -28,3 +29,4 @@ hex = "0.4.3"
serial_test = "2.0.0"
time = "0.3.31"
once_cell = "1.19.0"
dotenvy = "0.15"
Loading

0 comments on commit a9ca592

Please sign in to comment.