summaryrefslogtreecommitdiff
path: root/server (unfollow)
Commit message (Collapse)AuthorFilesLines
2022-02-18switch to universum preludestuebinm3-4/+8
also don't keep adjusted maps around if not necessary
2022-02-17sprinkle some NFData everywherestuebinm3-7/+14
(also some evaluateNF, leading to slightly less memory usage)
2022-02-17server: remove a thunk leakstuebinm3-21/+33
(really a lot of these data structures should be eagerly evaluated into normal form, i suspect there's still a lot to be gained)
2022-02-16server: exneuland wants a token, apparentlystuebinm2-19/+16
2022-02-16server: post map updates to exneuland's APIstuebinm2-19/+65
2022-02-16server: remove cli-git, cli-extrasstuebinm2-38/+56
both these packages are hard to use, seem to be either unfinished or abandoned, and also generally not very good. Also for some reason they depend on `lens`. Removing them dramatically shrunk the dependency closure!
2022-02-16server: add mapservice GET endpointstuebinm5-57/+71
2022-02-16internal state: sort according to orgstuebinm5-41/+82
(also, more lenses i guess)
2022-02-16server: repositores & orgs fixed in configstuebinm5-198/+231
a very simple setup that might be usable for divoc and similar small events
2022-02-16… several hours of fighting with TOML laterstuebinm3-70/+101
WHO THOUGHT THIS SYNTAX WAS A GOOD IDEA?? (and who decided to write the least obvious combinator library to parse it?)
2022-02-15server: switch to universum prelude, some cleanupstuebinm4-138/+129
it's slightly less of a mess than it was before
2022-02-12server: added (somewhat) sensible loggingstuebinm2-27/+42
it's not very sensible, but at least it exists
2022-02-11server: more debug outputstuebinm1-1/+1
2022-02-11server: admin interfacestuebinm4-64/+117
(for now, just a list of all maps and their current status)
2022-02-11server: present lint results in pretty htmlstuebinm2-47/+124
(this is mostly a rewrite / translation of the django templates built into rc3's hub)
2022-02-10server: simple servant-lucid stuffstuebinm3-8/+95
2022-02-07server: simple toml configstuebinm2-17/+39
2022-02-07server: proper job handlingstuebinm3-67/+110
Note: the server will not check submissions for duplicates! (nor does it do any kind of rate-limiting)
2022-02-07non-blocking serverstuebinm4-88/+126
2022-02-01basic server setup (using servant)stuebinm3-0/+179
adds a very basic http server that can be sent links to repositories & will download & lint them, then answer the request with the lints. Should probably do this in a non-blocking way …