We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 346e3af commit a937b34Copy full SHA for a937b34
.gitignore
@@ -1,4 +1,5 @@
1
private/*
2
+!private/appconfig.ini
3
progress.log
4
cache/*
5
databases/*
private/appconfig.ini
@@ -0,0 +1,19 @@
+; App configuration
+
+; db configuration
+[db]
+uri = sqlite://storage.sqlite
6
+migrate = 1
7
+pool_size = 1
8
9
+; smtp address and credentials
10
+[smtp]
11
+server = smtp.gmail.com:587
12
+sender = you@gmail.com
13
+login = username:password
14
15
16
+; form styling
17
+[forms]
18
+formstyle = bootstrap3_inline
19
+separator =
0 commit comments