You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Then in your config file, you can leave the password field empty - EthoPy will use the environment variable instead.
310
310
311
311
### Custom Configuration Locations
312
-
By default, EthoPy looks for configuration in `~/.ethopy/local_conf.json`. If you need to use a different location, you can specify it when starting EthoPy (ask your technical support person for help with this).
312
+
By default, EthoPy looks for configuration in `~/.ethopy/local_conf.json`. You can specify a different configuration file using the `--config` option:
313
+
314
+
```bash
315
+
# Use a custom configuration file
316
+
ethopy --config /path/to/my_config.json
317
+
318
+
# Or use the short form
319
+
ethopy -c /path/to/my_config.json
320
+
```
321
+
322
+
This is useful when you want to:
323
+
- Switch between different experimental setups
324
+
- Test with different database configurations
325
+
- Keep separate configurations for different projects
0 commit comments