-
Notifications
You must be signed in to change notification settings - Fork 3
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Improve clarity and usability of README for first-time Howitz users #86
Changes from 29 commits
80f5413
1044407
64f773f
81b3489
bba85db
ac9f5f1
a3566da
75af5a2
6bcf615
86af3b1
53c29c7
c1fd048
0de11d2
c492252
ee5af75
2c7366b
1b61ab8
15185b2
090a1ea
2bf3e84
b3f8ad9
7692e0a
6188a8e
b5211da
2b2089c
acbc9f6
49d0588
cede3c9
bc9f999
bcbcf69
5a5b366
File filter
Filter by extension
Conversations
Jump to
Diff view
Diff view
There are no files selected for viewing
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
[flask] | ||
SECRET_KEY = | ||
DEBUG = true | ||
|
||
[howitz] | ||
storage = "./howitz.sqlite3" | ||
devmode = true | ||
There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. What's There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more.
Good point, it shouldn't be set to true in example config without additional changes! Will fix. There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. We tried adding a cli-flag There was a problem hiding this comment. Choose a reason for hiding this commentThe reason will be displayed to describe this comment to others. Learn more. Have added warnings in the |
||
poll_interval = 60 | ||
timezone='LOCAL' | ||
|
||
[zino.connections.default] | ||
server = | ||
|
||
[logging] | ||
version = 1 | ||
|
||
[logging.root] | ||
level = "ERROR" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I would add this:
They are not used unless the
[logging.loggers.MODULE]
-stuff is also included.There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This seems to clutter the minimal file. Don't really see the reason to include it especially since it will not be activated unless
[logging.loggers.MODULE]
-stuff is included.