summary refs log tree commit diff stats
Commit message (Collapse)AuthorAgeFilesLines
* handling viper error when binding to pflagsBen Morrison2019-05-131-1/+3
|
* staticcheck warning fixedBen Morrison2019-05-131-2/+2
|
* redundant path removed. comments added.Ben Morrison2019-05-131-3/+5
|
* adjusting test config init funcBen Morrison2019-05-131-6/+1
|
* more stubbed testsBen Morrison2019-05-132-2/+74
|
* travis-ci badgeBen Morrison2019-05-131-1/+1
|
* travis ci configBen Morrison2019-05-131-0/+8
|
* stubbing out testsBen Morrison2019-05-131-0/+31
|
* watching for ^C. added comments.Ben Morrison2019-05-132-2/+37
|
* passing logfile as var to closing goroutine to prevent race conditionBen Morrison2019-05-121-9/+9
|
* reorganized handlers. StrictSlash(true). handling POST /api/plain/users for ↵Ben Morrison2019-05-122-9/+39
| | | | new users
* added stdoutLogging bool and related configurationBen Morrison2019-05-123-30/+58
|
* new defaultsBen Morrison2019-05-121-0/+1
|
* commented someBen Morrison2019-05-121-1/+9
|
* ignoring log fileBen Morrison2019-05-121-0/+1
|
* config fleshed out; using viper+pflagBen Morrison2019-05-124-12/+88
|
* dependencies updatedBen Morrison2019-05-122-0/+40
|
* revive static analysis configBen Morrison2019-05-121-0/+30
|
* query vars to endpoint in routingBen Morrison2019-05-111-1/+3
|
* more graceful routing of http requestsBen Morrison2019-05-111-8/+23
|
* commenting earlyBen Morrison2019-05-111-0/+3
|
* commenting earlyBen Morrison2019-05-111-8/+19
|
* logging initialization in init()Ben Morrison2019-05-111-0/+27
|
* removed unneded conf fieldBen Morrison2019-05-111-7/+0
|
* skeleton handlers respondingBen Morrison2019-05-113-8/+51
|
* dependenciesBen Morrison2019-05-112-0/+12
|
* stubbed out handlersBen Morrison2019-05-114-22/+25
|
* gzipped responsesBen Morrison2019-05-113-2/+10
|
* reorgBen Morrison2019-05-113-4/+5
|
* change port for unprivileged bindsBen Morrison2019-05-101-1/+1
|
* ignoring binaryBen Morrison2019-05-101-0/+1
|
* updated readmeBen Morrison2019-05-101-1/+3
|
* building the skeletonBen Morrison2019-05-103-0/+69
|
* go moduleBen Morrison2019-05-091-0/+3
|
* Initial commitBen Morrison2019-05-092-0/+676
d?h=v1.9.3&id=03ed2a43a1a80c69d1a9590e3e04fdb9317791ff'>03ed2a43 ^
6deb64e6 ^
03ed2a43 ^

f8f6f7f9 ^
f8f6f7f9 ^
6deb64e6 ^

f8f6f7f9 ^
03ed2a43 ^
c5f776ed ^
03ed2a43 ^

6deb64e6 ^
03ed2a43 ^

f8f6f7f9 ^
6deb64e6 ^
b071cb85 ^

6deb64e6 ^
c5f776ed ^
03ed2a43 ^
f8f6f7f9 ^
f8f6f7f9 ^
b071cb85 ^

f8f6f7f9 ^
c5f776ed ^
6deb64e6 ^



f8f6f7f9 ^
03ed2a43 ^
3652cb61 ^

c4e793c2 ^


03ed2a43 ^
c5f776ed ^
c4e793c2 ^

3652cb61 ^



















































































1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196