Configuration
Setting up your configuration
Method 1. Command-line arguments
jet_bridge --database_engine=postgresql \
--database_host=localhost \
--database_port=5432 \
--database_user=user \
--database_password=password \
--database_name=mydbMethod 2. Config file
[JET]
DATABASE_ENGINE=postgresql
DATABASE_HOST=localhost
DATABASE_PORT=5432
DATABASE_NAME=mydb
DATABASE_USER=user
DATABASE_PASSWORD=passwordMethod 3. Environment variables
Method 4. settings.py (Django package)
All available settings
Required settings
Optional settings
Last updated
Was this helpful?