From ff157c33d91da66d03561c1c1c61a44a509b2c74 Mon Sep 17 00:00:00 2001 From: line-6000 <154492442+line-6000@users.noreply.github.com> Date: Sat, 9 May 2026 21:46:44 +0800 Subject: [PATCH] Remove database config for PostgreSQL and MySQL Removed PostgreSQL and MySQL configuration settings from the example environment file. --- src/.env.example | 21 --------------------- 1 file changed, 21 deletions(-) diff --git a/src/.env.example b/src/.env.example index 3cf527e..9f0be63 100644 --- a/src/.env.example +++ b/src/.env.example @@ -20,27 +20,6 @@ db_type=sqlite sqlite_database_filename= sqlite_table_prefix= -# postgres config -postgres_host=127.0.0.1 -postgres_port=3306 -postgres_user=mysql_user -postgres_passwd=mysql_password -postgres_database=database_name -postgres_table_prefix= -postgres_max_idle_conns=10 -postgres_max_open_conns=100 -postgres_max_life_time=6 - -# mysql config -mysql_host=127.0.0.1 -mysql_port=3306 -mysql_user=mysql_user -mysql_passwd=mysql_password -mysql_database=database_name -mysql_table_prefix= -mysql_max_idle_conns=10 -mysql_max_open_conns=100 -mysql_max_life_time=6 # sqlite runtime store config runtime_sqlite_filename=epusdt-runtime.db