29 lines
822 B
Plaintext
29 lines
822 B
Plaintext
# Contents of the file: /servicenow-glpi-sync/servicenow-glpi-sync/.env.example
|
|
|
|
# This is an example of the environment variables needed for the application.
|
|
|
|
# ServiceNow API Configuration
|
|
SERVICENOW_URL=https://your-instance.service-now.com/api/now/table/
|
|
SERVICENOW_USERNAME=your_servicenow_username
|
|
SERVICENOW_PASSWORD=your_servicenow_password
|
|
|
|
# GLPI API Configuration
|
|
GLPI_URL=https://your-glpi-instance/apirest.php/
|
|
GLPI_APP_TOKEN=your_glpi_app_token
|
|
GLPI_USER_TOKEN=your_glpi_user_token
|
|
|
|
# Database Configuration
|
|
DB_HOST=localhost
|
|
DB_PORT=3306 # or 5432 for PostgreSQL
|
|
DB_USER=your_database_user
|
|
DB_PASSWORD=your_database_password
|
|
DB_NAME=your_database_name
|
|
|
|
# Logging Configuration
|
|
LOG_LEVEL=info
|
|
LOG_FILE_PATH=logs/app.log
|
|
ERROR_LOG_FILE_PATH=logs/error.log
|
|
|
|
# Other Configuration
|
|
PORT=3000
|
|
NODE_ENV=development |