Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -132,4 +132,7 @@ dmypy.json
*~

# Secrets file: should not be committed to repo!
secrets.ini
secrets.ini
# Local database configuration (may contain a password): copy
# config.ini.example to config.ini and edit. Should not be committed.
config.ini
11 changes: 0 additions & 11 deletions config.ini

This file was deleted.

16 changes: 16 additions & 0 deletions config.ini.example
Original file line number Diff line number Diff line change
@@ -0,0 +1,16 @@
# Example psycodict configuration. Copy this file to config.ini and edit;
# psycodict reads config.ini from the current directory by default (an
# explicit config_file always wins). The password can also be kept out of
# this file entirely: leave it empty here and put it in secrets.ini, which
# overrides values in this file and is never committed.

[logging]
slowcutoff = 0.1
slowlogfile = slow_queries.log

[postgresql]
host = localhost
port = 5432
user = postgres
password =
dbname = lmfdb