my first commit

This commit is contained in:
root
2025-11-19 15:18:35 +00:00
commit 9c85a9d0c8
97 changed files with 13637 additions and 0 deletions

BIN
.docker/db/._.gitignore Normal file

Binary file not shown.

BIN
.docker/db/._my.cnf Normal file

Binary file not shown.

BIN
.docker/db/._sql Executable file

Binary file not shown.

1
.docker/db/.gitignore vendored Normal file
View File

@@ -0,0 +1 @@
/data

21
.docker/db/my.cnf Normal file
View File

@@ -0,0 +1,21 @@
[mysqld]
character-set-server = utf8mb4
collation-server = utf8mb4_bin
default-authentication-plugin = mysql_native_password
log-error = /var/log/mysql/mysql-error.log
slow_query_log = 1
slow_query_log_file = /var/log/mysql/mysql-slow.log
long_query_time = 5.0
log_queries_not_using_indexes = 0
general_log = 1
general_log_file = /var/log/mysql/mysql-query.log
[mysql]
default-character-set = utf8mb4
[client]
default-character-set = utf8mb4

2
.docker/db/sql/.gitignore vendored Normal file
View File

@@ -0,0 +1,2 @@
*
!.gitignore