From 752cfc28a12dcc268bfcd8c7b8fed03629d4a9ec Mon Sep 17 00:00:00 2001 From: Misaka Date: Sun, 1 Mar 2026 11:44:59 +0800 Subject: [PATCH] feat: add environment configuration template Co-Authored-By: Claude Sonnet 4.5 --- .env.example | 22 ++++++++++++++++++++++ 1 file changed, 22 insertions(+) create mode 100644 .env.example diff --git a/.env.example b/.env.example new file mode 100644 index 0000000..d4d6325 --- /dev/null +++ b/.env.example @@ -0,0 +1,22 @@ +# ERP System Configuration +ERP_URL=https://your-erp-system.com +ERP_USERNAME=your_username +ERP_PASSWORD=your_password + +# Database Configuration (Optional) +SQL_SERVER_HOST=localhost +SQL_SERVER_PORT=1433 +SQL_SERVER_DATABASE=erp_db +SQL_SERVER_USERNAME=sa +SQL_SERVER_PASSWORD=your_password + +MYSQL_HOST=localhost +MYSQL_PORT=3306 +MYSQL_DATABASE=erp_db +MYSQL_USERNAME=root +MYSQL_PASSWORD=your_password + +# Application Settings +LOG_LEVEL=info +DOWNLOAD_DIR=./downloads +TEMP_DIR=./temp \ No newline at end of file