change source of account id in prepared token to domain account id, create consumer salesInvoiceModule

This commit is contained in:
2026-03-30 13:16:36 +03:30
parent c870a43e35
commit 9cf9209daa
22 changed files with 758 additions and 142 deletions
+24
View File
@@ -0,0 +1,24 @@
# Server Configuration
NODE_ENV=development
PORT=5002
# Database Configuration
DB_HOST=localhost
DB_PORT=3306
DB_NAME=consumer_db
DB_USER=consumer_user
DB_PASSWORD=consumer_password
DB_ROOT_PASSWORD=root_password
DATABASE_URL=mysql://consumer_user:consumer_password@localhost:3306/consumer_db
SHADOW_DATABASE_URL=mysql://consumer_user:consumer_password@localhost:3306/consumer_db_shadow
# JWT Configuration
JWT_SECRET=your_super_secret_jwt_key_change_this_in_production
JWT_EXPIRATION=604800
# CORS Configuration
CORS_ORIGINS=http://localhost:5000,http://127.0.0.1:5000
# File Upload Configuration
UPLOAD_PATH=./uploads
MAX_FILE_SIZE=10485760