about summary refs log tree commit diff stats
path: root/internal/server/server.go
Commit message (Collapse)AuthorAgeLines
* feat: more structured loggingAlan Pearce2024-07-01-8/+15
|
* refactor: rename go moduleAlan Pearce2024-06-29-2/+3
|
* feat: support cleartext HTTP/2 (i.e. from a reverse proxy)Alan Pearce2024-05-25-1/+8
|
* refactor: split server cmd and moduleAlan Pearce2024-05-24-8/+29
| | | | | It should now be possible to run the server from inside another go application by importing the main module and running its Start() function
* style: make port a string for easier nix integrationAlan Pearce2024-05-13-1/+2
|
* refactor: combine import and web server into one binaryAlan Pearce2024-05-13-2/+3
|
* refactor(config): simplify configurationAlan Pearce2024-05-13-3/+4
| | | | | | | | | | | | | | commit 8225dbdb692c99b39dcafe2e5ec6ddc4daf08fb5 Author: Alan Pearce <alan@alanpearce.eu> Date: Mon May 13 19:18:26 2024 +0200 refactor: consolidate configuration to reduce command-line options commit 5616d4c5a9bc6c0c14f744f812fa6609f859dc34 Author: Alan Pearce <alan@alanpearce.eu> Date: Mon May 13 17:41:58 2024 +0200 refactor: move config file parsing to program entry points
* refactor: split http.Server and http.ServeMux creationAlan Pearce2024-05-11-276/+3
|
* fix: missing menu on search pagesAlan Pearce2024-05-11-0/+1
|
* refactor: deduce index path automatically from config.DataPathAlan Pearce2024-05-11-2/+1
|
* build: optionally embed frontend filesAlan Pearce2024-05-10-4/+2
|
* fix: missing menu on search pageAlan Pearce2024-05-10-0/+1
|
* refactor: clean up flags and environment variablesAlan Pearce2024-05-09-16/+5
|
* feat: dynamically link to sourcesAlan Pearce2024-05-09-0/+2
|
* refactor: pass Source object to templatesAlan Pearce2024-05-09-14/+20
|
* style: reformat with golines and enforce on commitAlan Pearce2024-05-09-1/+4
|
* feat: enable index path to be configuredAlan Pearce2024-05-09-1/+2
|
* feat: allow configuration of log levelAlan Pearce2024-05-09-8/+9
|
* feat: enable setting config file path via command lineAlan Pearce2024-05-09-1/+2
|
* feat: import sources from configuration in go code and index optionsAlan Pearce2024-05-09-35/+35
|
* refactor: log index loading progress at startupAlan Pearce2024-05-08-1/+2
|
* feat: paginate search resultsAlan Pearce2024-05-08-5/+52
|
* perf: create search indexes in parallel with server startupAlan Pearce2024-05-07-8/+11
|
* feat: search multiple sourcesAlan Pearce2024-05-07-15/+33
|
* style: show pages for different sourcesAlan Pearce2024-05-07-8/+21
|
* style: split homepage and search pageAlan Pearce2024-05-07-1/+10
|
* feat: search one set of optionsAlan Pearce2024-05-07-17/+26
|
* refactor: rely on html/template functionality moreAlan Pearce2024-05-07-3/+3
|
* refactor: extract templating into own fileAlan Pearce2024-05-07-69/+0
|
* refactor: make data path (partially) configurableAlan Pearce2024-05-07-1/+1
|
* feat: render markdown examplesAlan Pearce2024-05-06-2/+17
|
* feat: render markdown in option descriptionsAlan Pearce2024-05-05-30/+38
|
* refactor: only reload templates when such files are updatedAlan Pearce2024-05-05-4/+7
|
* chore: watch all frontend filesAlan Pearce2024-05-04-1/+1
|
* feat: frontend search implementationAlan Pearce2024-05-04-14/+96
|
* chore: use prettier with plugin to format go templatesAlan Pearce2024-05-04-1/+1
|
* feat: watch and live reload in developmentAlan Pearce2024-05-03-3/+21
|
* feat: serve a very basic html templateAlan Pearce2024-05-02-0/+175