Skip to content

Commit a937b34

Browse files
committed
Added appconfig.ini
1 parent 346e3af commit a937b34

File tree

2 files changed

+20
-0
lines changed

2 files changed

+20
-0
lines changed

.gitignore

+1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,5 @@
11
private/*
2+
!private/appconfig.ini
23
progress.log
34
cache/*
45
databases/*

private/appconfig.ini

+19
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,19 @@
1+
; App configuration
2+
3+
; db configuration
4+
[db]
5+
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

Comments
 (0)