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
|
name: juandelacosa
version: 0.1.2
cabal-version: 1.20
license: MIT
license-file: LICENSE
copyright: 2016, Zalora South East Asia Pte. Ltd
maintainer: Igor Pashev <pashev.igor@gmail.com>
author: Igor Pashev <pashev.igor@gmail.com>
synopsis: Manage users in MariaDB >= 10.1.1
description:
HTTP server for managing MariaDB users. Designed to work behind
Sproxy and assuming users' logins are their email addresses
(MariaDB allows up to 80 characters).
category: Databases, Web
build-type: Simple
data-files:
index.html
static/external/bootstrap/css/*.min.css
static/external/bootstrap/js/*.min.js
static/external/jquery-2.2.4.min.js
static/juandelacosa.js
extra-source-files:
README.md
ChangeLog.md
source-repository head
type: git
location: https://github.com/ip1981/juandelacosa.git
executable juandelacosa
main-is: Main.hs
hs-source-dirs: src
other-modules:
Application
LogFormat
Server
default-language: Haskell2010
ghc-options: -Wall -static
build-depends:
base >=4.8 && <50,
base64-bytestring >=1.0,
bytestring >=0.10,
data-default-class -any,
entropy >=0.3,
fast-logger -any,
http-types >=0.9,
mtl >=2.2,
mysql >=0.1,
mysql-simple >=0.2,
network >=2.6,
optparse-applicative >=0.13.0.0,
resource-pool >=0.2,
scotty >=0.10,
text >=1.2,
unix >=2.7,
wai >=3.2,
wai-extra >=3.0,
wai-middleware-static >=0.8,
warp >=3.2
|